Skip to content

Commit 65203d5

Browse files
weinbe58claude
andauthored
build: unify Rust crate versions via workspace.package.version (#268)
All three crates now inherit their version from workspace.package.version in the root Cargo.toml instead of each declaring their own. This keeps Rust crate versions in sync with each other and makes it easier to align with the Python package version during releases. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent ff3b1cc commit 65203d5

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ members = [
55
"crates/bloqade-lanes-bytecode-cli",
66
]
77
resolver = "2"
8+
9+
[workspace.package]
10+
version = "0.6.0-dev"

crates/bloqade-lanes-bytecode-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bloqade-lanes-bytecode-cli"
3-
version = "0.1.0"
3+
version.workspace = true
44
edition = "2024"
55

66
[lib]

crates/bloqade-lanes-bytecode-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bloqade-lanes-bytecode-core"
3-
version = "0.1.0"
3+
version.workspace = true
44
edition = "2024"
55

66
[lib]

crates/bloqade-lanes-bytecode-python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bloqade-lanes-bytecode-python"
3-
version = "0.1.0"
3+
version.workspace = true
44
edition = "2024"
55

66
[lib]

0 commit comments

Comments
 (0)