Skip to content

Commit

Permalink
Update license field following SPDX 2.1 license expression standard (#…
Browse files Browse the repository at this point in the history
…194)

The new recommendation is to follow the SPDX 2.1 standard. This allows automatic license verification software to work properly. Reference: https://doc.rust-lang.org/cargo/reference/manifest.html#the-license-and-license-file-fields
  • Loading branch information
frisoft committed Jul 20, 2023
1 parent 21fd9ae commit c49e279
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.0.1"
authors = ["Chinedu Francis Nwafili <frankie.nwafili@gmail.com>"]
description = "A modular toolkit for building interactive frontend browser apps with Rust + WebAssembly. Supports server side rendering."
keywords = ["virtual", "dom", "wasm", "css", "webassembly"]
license = "MIT/Apache-2.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/chinedufn/percy"

[workspace]
Expand Down
2 changes: 1 addition & 1 deletion crates/html-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.2.2"
description = "html macro"
authors = ["Chinedu Francis Nwafili <frankie.nwafili@gmail.com>"]
keywords = ["virtual", "dom", "wasm", "assembly", "webassembly"]
license = "MIT/Apache-2.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/chinedufn/percy"
documentation = "https://chinedufn.github.io/percy/api/html_macro/"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion crates/html-validation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.2"
authors = ["Chinedu Francis Nwafili <frankie.nwafili@gmail.com>"]
description = "Validation for HTML elements and attributes"
keywords = ["html", "validation", "valid", "dom", "virtual"]
license = "MIT/Apache-2.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/chinedufn/percy"
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/percy-css-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "A macro for writing your CSS next to your views"
keywords = ["css", "style", "stylesheet", "percy", "sheet"]
documentation = "https://chinedufn.github.io/percy/api/percy_css_macro"
repository = "https://github.com/chinedufn/percy"
license = "MIT/Apache-2.0"
license = "MIT OR Apache-2.0"

[lib]
proc-macro = true
Expand Down
2 changes: 1 addition & 1 deletion crates/percy-css/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.1"
description = "Percy CSS"
authors = ["Chinedu Francis Nwafili <frankie.nwafili@gmail.com>"]
keywords = ["percy", "css", "browser", "web"]
license = "MIT/Apache-2.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/chinedufn/percy"
documentation = "https://chinedufn.github.io/percy/api/percy_css/"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion crates/percy-dom/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.9.6"
authors = ["Chinedu Francis Nwafili <frankie.nwafili@gmail.com>"]
description = "A standalone Virtual DOM creation, diffing and patching implementation"
keywords = ["virtual", "dom", "wasm", "assembly", "webassembly"]
license = "MIT/Apache-2.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/chinedufn/percy"
documentation = "https://chinedufn.github.io/percy/api/percy_dom/"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion crates/percy-preview-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.0.3"
edition = "2021"
description = "Preview virtual dom components"
keywords = ["virtual", "dom", "wasm", "assembly", "webassembly"]
license = "MIT/Apache-2.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/chinedufn/percy"

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/percy-preview/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.0.3"
edition = "2021"
description = "Preview virtual dom components"
keywords = ["virtual", "dom", "wasm", "assembly", "webassembly"]
license = "MIT/Apache-2.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/chinedufn/percy"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/percy-router-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.5"
authors = ["Chinedu Francis Nwafili <frankie.nwafili@gmail.com>"]
description = "A macro for client side web application routing"
keywords = ["route", "router", "wasm", "assembly", "webassembly"]
license = "MIT/Apache-2.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/chinedufn/percy"
documentation = "https://chinedufn.github.io/percy/api/percy_router_macro/"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion crates/percy-router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Chinedu Francis Nwafili <frankie.nwafili@gmail.com>"]
edition = "2018"
description = "A router for client side web applications with server side rendering support"
keywords = ["webassembly", "wasm", "router", "route", "url"]
license = "MIT/Apache-2.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/chinedufn/percy"
documentation = "https://chinedufn.github.io/percy/api/percy_router/"

Expand Down
2 changes: 1 addition & 1 deletion crates/virtual-node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.5.0"
description = "A standalone Virtual DOM"
authors = ["Chinedu Francis Nwafili <frankie.nwafili@gmail.com>"]
keywords = ["virtual", "dom", "wasm", "browser", "webassembly"]
license = "MIT/Apache-2.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/chinedufn/percy"
documentation = "https://chinedufn.github.io/percy/api/virtual_node/"
edition = "2018"
Expand Down

0 comments on commit c49e279

Please sign in to comment.