mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
Added missing licenses to Cargo.toml files and updated to use SPDX syntax (#1822)
This commit is contained in:
parent
3e13321751
commit
c51ab7f094
@ -3,6 +3,7 @@ name = "boids"
|
||||
version = "0.1.0"
|
||||
authors = ["motoki saito <stmtk13044032@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
[dependencies]
|
||||
|
||||
@ -3,6 +3,7 @@ name = "counter"
|
||||
version = "0.1.1"
|
||||
authors = ["Denis Kolodin <deniskolodin@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
js-sys = "0.3"
|
||||
|
||||
@ -3,6 +3,7 @@ name = "crm"
|
||||
version = "0.1.0"
|
||||
authors = ["Denis Kolodin <deniskolodin@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
serde = "1"
|
||||
|
||||
@ -3,6 +3,7 @@ name = "dashboard"
|
||||
version = "0.1.0"
|
||||
authors = ["Denis Kolodin <deniskolodin@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1"
|
||||
|
||||
@ -3,8 +3,9 @@ name = "server"
|
||||
version = "0.1.0"
|
||||
authors = ["Denis Kolodin <deniskolodin@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
tungstenite = "0.10.1"
|
||||
|
||||
[workspace]
|
||||
[workspace]
|
||||
|
||||
@ -3,6 +3,7 @@ name = "file_upload"
|
||||
version = "0.1.0"
|
||||
authors = ["Denis Kolodin <deniskolodin@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
js-sys = "0.3"
|
||||
|
||||
@ -3,6 +3,7 @@ name = "futures"
|
||||
version = "0.1.0"
|
||||
authors = ["Henry Zimmerman <zimhen7@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
pulldown-cmark = { version = "0.8", default-features = false }
|
||||
|
||||
@ -7,6 +7,7 @@ authors = [
|
||||
"Junjie Huang <huangjj.27@qq.com>"
|
||||
]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
getrandom = { version = "0.2", features = ["js"] }
|
||||
|
||||
@ -3,6 +3,7 @@ name = "inner_html"
|
||||
version = "0.1.0"
|
||||
authors = ["Garrett Berg <vitiral@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
yew = { path = "../../packages/yew" }
|
||||
|
||||
@ -3,6 +3,7 @@ name = "js_callback"
|
||||
version = "0.1.0"
|
||||
authors = ["Scott Steele <scottlsteele@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
wasm-bindgen = "0.2"
|
||||
|
||||
@ -3,6 +3,7 @@ name = "keyed_list"
|
||||
version = "0.1.0"
|
||||
authors = ["Thomas Lacroix <toto.rigolo@free.fr>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
fake = "2.2"
|
||||
|
||||
@ -3,6 +3,7 @@ name = "mount_point"
|
||||
version = "0.1.0"
|
||||
authors = ["Ben Berman <ben@standardbots.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
wasm-bindgen = "0.2"
|
||||
|
||||
@ -3,6 +3,7 @@ name = "multi_thread"
|
||||
version = "0.1.0"
|
||||
authors = ["Denis Kolodin <deniskolodin@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
log = "0.4"
|
||||
|
||||
@ -3,6 +3,7 @@ name = "nested_list"
|
||||
version = "0.1.0"
|
||||
authors = ["Justin Starry <justin.starry@icloud.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
log = "0.4"
|
||||
|
||||
@ -3,6 +3,7 @@ name = "node_refs"
|
||||
version = "0.1.0"
|
||||
authors = ["Justin Starry <justin.starry@icloud.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
yew = { path = "../../packages/yew" }
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
name = "pub_sub"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
log = "0.4"
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
name = "router"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
instant = { version = "0.1", features = ["wasm-bindgen"] }
|
||||
|
||||
@ -3,6 +3,7 @@ name = "store"
|
||||
version = "0.1.0"
|
||||
authors = ["Michał Kawalec <michal@monad.cat>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
yew = { path = "../../packages/yew" }
|
||||
|
||||
@ -3,6 +3,7 @@ name = "timer"
|
||||
version = "0.1.0"
|
||||
authors = ["Denis Kolodin <deniskolodin@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
yew = { path = "../../packages/yew" }
|
||||
|
||||
@ -3,6 +3,7 @@ name = "todomvc"
|
||||
version = "0.1.0"
|
||||
authors = ["Denis Kolodin <deniskolodin@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
strum = "0.20"
|
||||
|
||||
@ -3,6 +3,7 @@ name = "two_apps"
|
||||
version = "0.1.0"
|
||||
authors = ["Denis Kolodin <deniskolodin@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
yew = { path = "../../packages/yew" }
|
||||
|
||||
@ -3,6 +3,7 @@ name = "webgl"
|
||||
version = "0.1.0"
|
||||
authors = ["Miklós Tusz <mdtusz@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
js-sys = "0.3"
|
||||
|
||||
@ -6,7 +6,7 @@ authors = ["Yew Maintainers <maintainers@yew.rs>"]
|
||||
repository = "https://github.com/yewstack/yew"
|
||||
homepage = "https://github.com/yewstack/yew"
|
||||
documentation = "https://docs.rs/yew-components/"
|
||||
license = "MIT/Apache-2.0"
|
||||
license = "MIT OR Apache-2.0"
|
||||
keywords = ["web", "asmjs", "webasm", "javascript"]
|
||||
categories = ["gui", "web-programming"]
|
||||
description = "A collection of community-created Yew components"
|
||||
|
||||
@ -3,8 +3,9 @@ name = "yew-dsl"
|
||||
version = "0.1.0"
|
||||
authors = ["Teymour Aldridge <teymour.aldridge@icloud.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
yew = {path="../yew"}
|
||||
yew = {path="../yew"}
|
||||
|
||||
@ -3,6 +3,7 @@ name = "yew-functional-macro"
|
||||
version = "0.1.0"
|
||||
authors = ["Hamza <muhammadhamza1311@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
[lib]
|
||||
|
||||
@ -5,7 +5,7 @@ authors = ["ZainlessBrombie <zainredirect@gmail.com>"]
|
||||
edition = "2018"
|
||||
repository = "https://github.com/yewstack/yew"
|
||||
homepage = "https://github.com/yewstack/yew"
|
||||
license = "MIT/Apache-2.0"
|
||||
license = "MIT OR Apache-2.0"
|
||||
keywords = ["web", "wasm", "frontend", "webasm", "webassembly"]
|
||||
categories = ["gui", "web-programming", "wasm"]
|
||||
description = "A framework for making client-side single-page apps"
|
||||
|
||||
@ -6,7 +6,7 @@ authors = ["Justin Starry <justin@yew.rs>"]
|
||||
repository = "https://github.com/yewstack/yew"
|
||||
homepage = "https://github.com/yewstack/yew"
|
||||
documentation = "https://docs.rs/yew-macro/"
|
||||
license = "MIT/Apache-2.0"
|
||||
license = "MIT OR Apache-2.0"
|
||||
keywords = ["web", "wasm", "frontend", "webasm", "webassembly"]
|
||||
categories = ["gui", "web-programming", "wasm"]
|
||||
description = "A framework for making client-side single-page apps"
|
||||
|
||||
@ -3,7 +3,7 @@ name = "yew-router-macro"
|
||||
version = "0.14.0"
|
||||
authors = ["Henry Zimmerman <zimhen7@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT/Apache-2.0"
|
||||
license = "MIT OR Apache-2.0"
|
||||
description = "Contains macros used with yew-router"
|
||||
repository = "https://github.com/yewstack/yew"
|
||||
|
||||
@ -17,4 +17,4 @@ yew-router-route-parser = { version = "0.14.0", path = "../yew-router-route-pars
|
||||
proc-macro2 = "1.0.1"
|
||||
|
||||
[dev-dependencies]
|
||||
yew-router = { version = "0.14.0", path = "../yew-router" } # This should probably be removed, it makes the deploy process much more annoying.
|
||||
yew-router = { version = "0.14.0", path = "../yew-router" } # This should probably be removed, it makes the deploy process much more annoying.
|
||||
|
||||
@ -3,7 +3,7 @@ name = "yew-router-route-parser"
|
||||
version = "0.14.0"
|
||||
authors = ["Henry Zimmerman <zimhen7@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT/Apache-2.0"
|
||||
license = "MIT OR Apache-2.0"
|
||||
description = "The parser for the routing syntax used with yew-router"
|
||||
repository = "https://github.com/yewstack/yew"
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@ name = "yew-router"
|
||||
version = "0.14.0"
|
||||
authors = ["Henry Zimmerman <zimhen7@gmail.com>", "Sascha Grunert <mail@saschagrunert.de>"]
|
||||
edition = "2018"
|
||||
license = "MIT/Apache-2.0"
|
||||
license = "MIT OR Apache-2.0"
|
||||
readme = "README.md"
|
||||
keywords = ["web", "yew", "router"]
|
||||
categories = ["gui", "web-programming"]
|
||||
|
||||
@ -3,6 +3,7 @@ name = "yew-services"
|
||||
version = "0.1.0"
|
||||
authors = ["Hamza <muhammadhamza1311@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1"
|
||||
|
||||
@ -3,7 +3,7 @@ name = "yew-validation"
|
||||
version = "0.1.0"
|
||||
authors = ["Philip Peterson <pc.peterso@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT/Apache-2.0"
|
||||
license = "MIT OR Apache-2.0"
|
||||
keywords = ["web", "yew", "validation"]
|
||||
categories = ["text-processing", "parsing", "web-programming"]
|
||||
description = "Utilities for Yew to validate tag names and attributes"
|
||||
|
||||
@ -9,7 +9,7 @@ authors = [
|
||||
repository = "https://github.com/yewstack/yew"
|
||||
homepage = "https://github.com/yewstack/yew"
|
||||
documentation = "https://docs.rs/yew/"
|
||||
license = "MIT/Apache-2.0"
|
||||
license = "MIT OR Apache-2.0"
|
||||
readme = "../README.md"
|
||||
keywords = ["web", "webasm", "javascript"]
|
||||
categories = ["gui", "wasm", "web-programming"]
|
||||
|
||||
@ -3,7 +3,7 @@ name = "yewtil-macro"
|
||||
version = "0.2.0"
|
||||
authors = ["Henry Zimmerman <zimhen7@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT/Apache-2.0"
|
||||
license = "MIT OR Apache-2.0"
|
||||
description = "Macros to be re-exported from the yewtil crate"
|
||||
|
||||
[lib]
|
||||
|
||||
@ -4,7 +4,7 @@ version = "0.3.2"
|
||||
authors = ["Henry Zimmerman <zimhen7@gmail.com>"]
|
||||
edition = "2018"
|
||||
description = "Utility crate for Yew"
|
||||
license = "MIT/Apache-2.0"
|
||||
license = "MIT OR Apache-2.0"
|
||||
repository = "https://github.com/yewstack/yew"
|
||||
readme = "README.md"
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user