Skip to content

Commit

Permalink
fix: tidy cargo
Browse files Browse the repository at this point in the history
  • Loading branch information
maxrobot committed Dec 2, 2024
1 parent 8732a65 commit 9e2e8e6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ethereum-types = { version = "0.5.2" }
hex = { version = "0.4.3", features = [ "serde" ] }
injective-cosmwasm = { version = "0.3.0", path = "./packages/injective-cosmwasm" }
injective-math = { version = "0.3.0", path = "./packages/injective-math" }
injective-std = { version = "1.13.2-auction", path = "./packages/injective-std" }
injective-std = { version = "=1.13.2-auction", path = "./packages/injective-std" }
injective-std-derive = { version = "1.13.0", path = "./packages/injective-std-derive" }
injective-test-tube = { version = "1.13.2" }
injective-testing = { version = "1.1.0", path = "./packages/injective-testing" }
Expand All @@ -35,7 +35,7 @@ quote = { version = "1.0.20" }
rand = { version = "0.4.6" }
regex = { version = "1.11.1" }
schemars = { version = "0.8.16" }
secp256k1 = { version = "0.30.0" }
secp256k1 = { version = "0.30.0", features = [ "rand" ] }
serde = { version = "1.0.196", default-features = false, features = [ "derive" ] }
serde-cw-value = { version = "0.7.0" }
serde-json-wasm = { version = "1.0.0" }
Expand Down
8 changes: 4 additions & 4 deletions packages/injective-testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ anyhow = { workspace = true }
base64 = { workspace = true }
cosmwasm-std = { workspace = true }
cw-multi-test = { workspace = true }
injective-cosmwasm = { workspace = true }
injective-math = { workspace = true }
injective-std = { workspace = true }
injective-cosmwasm = { workspace = true, path = "../injective-cosmwasm" }
injective-math = { workspace = true, path = "../injective-math" }
injective-std = { workspace = true, path = "../injective-std" }
injective-test-tube = { workspace = true }
prost = { workspace = true }
rand = { workspace = true }
regex = { workspace = true }
secp256k1 = { workspace = true, features = [ "rand" ] }
secp256k1 = { workspace = true }
serde = { workspace = true }
tiny-keccak = { workspace = true }

0 comments on commit 9e2e8e6

Please sign in to comment.