Skip to content

Commit

Permalink
[rust] aggregates package metadata to workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
hkrn committed Mar 22, 2024
1 parent e593478 commit ced92f3
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 20 deletions.
7 changes: 7 additions & 0 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ members = [
]
default-members = ["plugin_wasm"]

[workspace.package]
authors = ["hkrn <129939+hkrn@users.noreply.github.com>"]
edition = "2021"
license = "MPL-2.0"
rust-version = "1.74"
version = "35.0.0"

[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Expand Down
8 changes: 4 additions & 4 deletions rust/plugin_wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "plugin_wasm"
version = "35.0.0"
authors = ["hkrn <129939+hkrn@users.noreply.github.com>"]
edition = "2021"
license = "MPL-2.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
version.workspace = true

[dependencies]
anyhow = "1"
Expand Down
8 changes: 4 additions & 4 deletions rust/plugin_wasm_test_model_full/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "plugin_wasm_test_model_full"
version = "35.0.0"
authors = ["hkrn <129939+hkrn@users.noreply.github.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
version.workspace = true

[lib]
path = "src/lib.rs"
Expand Down
8 changes: 4 additions & 4 deletions rust/plugin_wasm_test_model_minimum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "plugin_wasm_test_model_minimum"
version = "35.0.0"
authors = ["hkrn <129939+hkrn@users.noreply.github.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
version.workspace = true

[lib]
path = "src/lib.rs"
Expand Down
8 changes: 4 additions & 4 deletions rust/plugin_wasm_test_motion_full/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "plugin_wasm_test_motion_full"
version = "35.0.0"
authors = ["hkrn <129939+hkrn@users.noreply.github.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
version.workspace = true

[lib]
path = "src/lib.rs"
Expand Down
8 changes: 4 additions & 4 deletions rust/plugin_wasm_test_motion_minimum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "plugin_wasm_test_motion_minimum"
version = "35.0.0"
authors = ["hkrn <129939+hkrn@users.noreply.github.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
version.workspace = true

[lib]
path = "src/lib.rs"
Expand Down

0 comments on commit ced92f3

Please sign in to comment.