Skip to content

Commit

Permalink
fix std leak in test-utils
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed Feb 7, 2024
1 parent 16192d0 commit e63fec3
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 21 deletions.
26 changes: 10 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ chrono = { version = "0.4", default-features = false, features = ["serde"] }
derive_more = "0.99.16"
env_logger = "0.9.0"
hex = { version = "0.4.3", default-features = false, features = ["alloc"] }
hex-literal = "0.3.3"
hex-literal = "0.4.1"
log = { version = "0.4.20", default-features = false }
rustc-hex = { version = "2.1.0", default-features = false }
serde = { version = "1.0.188", default-features = false, features = ["alloc", "derive"] }
Expand Down
2 changes: 1 addition & 1 deletion enclave-bridge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ sp-std = { workspace = true }
frame-benchmarking = { workspace = true, optional = true }
hex-literal = { workspace = true, optional = true }
pallet-balances = { workspace = true, optional = true }
test-utils = { path = "../test-utils", optional = true }
test-utils = { default-features = false, path = "../test-utils", optional = true }

[dev-dependencies]
env_logger = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion sidechain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ frame-benchmarking = { workspace = true, optional = true }
hex-literal = { workspace = true, optional = true }
pallet-balances = { workspace = true, optional = true }
teerex-primitives = { path = "../primitives/teerex", default-features = false }
test-utils = { path = "../test-utils", optional = true }
test-utils = { default-features = false, path = "../test-utils", optional = true }

[dev-dependencies]
env_logger = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion teeracle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ sp-std = { workspace = true }
frame-benchmarking = { workspace = true, optional = true }
hex-literal = { workspace = true, optional = true }
pallet-timestamp = { workspace = true, optional = true }
test-utils = { path = "../test-utils", optional = true }
test-utils = { default-features = false, path = "../test-utils", optional = true }

[dev-dependencies]
sp-externalities = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion teerex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ sp-std = { workspace = true }
frame-benchmarking = { workspace = true, optional = true }
hex-literal = { workspace = true, optional = true }
pallet-balances = { workspace = true, optional = true }
test-utils = { path = "../test-utils", optional = true }
test-utils = { default-features = false, path = "../test-utils", optional = true }

[dev-dependencies]
env_logger = { workspace = true }
Expand Down

0 comments on commit e63fec3

Please sign in to comment.