Skip to content

Commit

Permalink
Add back version specifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
aumetra committed Apr 5, 2024
1 parent f0675a5 commit a41f5a3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ syn = { version = "2", features = ["full"] }
# "What's even more fun, Cargo packages actually can have cyclic dependencies.
# "(a package can have an indirect dev-dependency on itself)"
# https://users.rust-lang.org/t/does-cargo-support-cyclic-dependencies/35666/3
cosmwasm-std = { path = "../std" }
cosmwasm-std = { version = "2.0.1", path = "../std" }
4 changes: 2 additions & 2 deletions packages/go-gen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
cosmwasm-std = { path = "../std", features = ["cosmwasm_2_0", "staking", "stargate"] }
cosmwasm-schema = { path = "../schema" }
cosmwasm-std = { version = "2.0.1", path = "../std", features = ["cosmwasm_2_0", "staking", "stargate"] }
cosmwasm-schema = { version = "2.0.1", path = "../schema" }
anyhow = "1"
Inflector = "0.11.4"
indenter = "0.3.3"
Expand Down
2 changes: 1 addition & 1 deletion packages/schema/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ thiserror = "1.0.26"

[dev-dependencies]
anyhow = "1.0.57"
cosmwasm-std = { path = "../std" }
cosmwasm-std = { version = "2.0.1", path = "../std" }
semver = "1"
tempfile = "3"
6 changes: 3 additions & 3 deletions packages/std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ cosmwasm_2_1 = ["cosmwasm_2_0"]

[dependencies]
base64 = "0.22.0"
cosmwasm-derive = { path = "../derive" }
cosmwasm-derive = { version = "2.0.1", path = "../derive" }
derivative = { version = "2", features = ["use_core"] }
forward_ref = "1"
hex = "0.4"
Expand All @@ -69,10 +69,10 @@ static_assertions = "1.1.0"

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

[dev-dependencies]
cosmwasm-schema = { path = "../schema" }
cosmwasm-schema = { version = "2.0.1", path = "../schema" }
# The chrono dependency is only used in an example, which Rust compiles for us. If this causes trouble, remove it.
chrono = { version = "0.4", default-features = false, features = ["alloc", "std"] }
crc32fast = "1.3.2"
Expand Down
4 changes: 2 additions & 2 deletions packages/vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ clru = "0.6.1"
crc32fast = "1.3.2"
bech32 = "0.11.0"
# Uses the path when built locally; uses the given version from crates.io when published
cosmwasm-std = { path = "../std", default-features = false, features = ["std"] }
cosmwasm-crypto = { path = "../crypto" }
cosmwasm-std = { version = "2.0.1", path = "../std", default-features = false, features = ["std"] }
cosmwasm-crypto = { version = "2.0.1", path = "../crypto" }
derivative = "2"
hex = "0.4"
schemars = { workspace = true }
Expand Down

0 comments on commit a41f5a3

Please sign in to comment.