Skip to content

Commit a41f5a3

Browse files
committed
Add back version specifiers
1 parent f0675a5 commit a41f5a3

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

packages/derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ syn = { version = "2", features = ["full"] }
2424
# "What's even more fun, Cargo packages actually can have cyclic dependencies.
2525
# "(a package can have an indirect dev-dependency on itself)"
2626
# https://users.rust-lang.org/t/does-cargo-support-cyclic-dependencies/35666/3
27-
cosmwasm-std = { path = "../std" }
27+
cosmwasm-std = { version = "2.0.1", path = "../std" }

packages/go-gen/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ publish = false
88
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
99

1010
[dependencies]
11-
cosmwasm-std = { path = "../std", features = ["cosmwasm_2_0", "staking", "stargate"] }
12-
cosmwasm-schema = { path = "../schema" }
11+
cosmwasm-std = { version = "2.0.1", path = "../std", features = ["cosmwasm_2_0", "staking", "stargate"] }
12+
cosmwasm-schema = { version = "2.0.1", path = "../schema" }
1313
anyhow = "1"
1414
Inflector = "0.11.4"
1515
indenter = "0.3.3"

packages/schema/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ thiserror = "1.0.26"
1616

1717
[dev-dependencies]
1818
anyhow = "1.0.57"
19-
cosmwasm-std = { path = "../std" }
19+
cosmwasm-std = { version = "2.0.1", path = "../std" }
2020
semver = "1"
2121
tempfile = "3"

packages/std/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ cosmwasm_2_1 = ["cosmwasm_2_0"]
5555

5656
[dependencies]
5757
base64 = "0.22.0"
58-
cosmwasm-derive = { path = "../derive" }
58+
cosmwasm-derive = { version = "2.0.1", path = "../derive" }
5959
derivative = { version = "2", features = ["use_core"] }
6060
forward_ref = "1"
6161
hex = "0.4"
@@ -69,10 +69,10 @@ static_assertions = "1.1.0"
6969

7070
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
7171
bech32 = "0.11.0"
72-
cosmwasm-crypto = { path = "../crypto" }
72+
cosmwasm-crypto = { version = "2.0.1", path = "../crypto" }
7373

7474
[dev-dependencies]
75-
cosmwasm-schema = { path = "../schema" }
75+
cosmwasm-schema = { version = "2.0.1", path = "../schema" }
7676
# The chrono dependency is only used in an example, which Rust compiles for us. If this causes trouble, remove it.
7777
chrono = { version = "0.4", default-features = false, features = ["alloc", "std"] }
7878
crc32fast = "1.3.2"

packages/vm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ clru = "0.6.1"
3333
crc32fast = "1.3.2"
3434
bech32 = "0.11.0"
3535
# Uses the path when built locally; uses the given version from crates.io when published
36-
cosmwasm-std = { path = "../std", default-features = false, features = ["std"] }
37-
cosmwasm-crypto = { path = "../crypto" }
36+
cosmwasm-std = { version = "2.0.1", path = "../std", default-features = false, features = ["std"] }
37+
cosmwasm-crypto = { version = "2.0.1", path = "../crypto" }
3838
derivative = "2"
3939
hex = "0.4"
4040
schemars = { workspace = true }

0 commit comments

Comments
 (0)