Skip to content

Commit

Permalink
test builds
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed Jan 31, 2024
1 parent 53a445f commit 56179fe
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ libsecp256k1 = { version = "0.7.0", default-features = false }
log = { version = "0.4.14", default-features = false }
pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
pallet-timestamp = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
pallet-vesting = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
pallet-vesting = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
ring = { version = "0.16.20", default-features = false, features = ["alloc"] }
rustc-hex = { version = "2.1.0", default-features = false }
scale-info = { version = "2.10.0", default-features = false, features = ["derive", "serde"] }
Expand Down
4 changes: 2 additions & 2 deletions claims/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ claims-primitives = { package = "claims-primitives", path = "../primitives/claim
[dev-dependencies]
hex-literal = { workspace = true }
libsecp256k1 = { workspace = true }
pallet-balances = { workspace = true }
pallet-vesting = { workspace = true }
pallet-balances = { workspace = true, features = ["std"] }
pallet-vesting = { workspace = true, features = ["std"] }
serde_json = { workspace = true }
sp-core = { workspace = true }

Expand Down
4 changes: 2 additions & 2 deletions enclave-bridge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ test-utils = { path = "../test-utils", optional = true }
[dev-dependencies]
env_logger = { workspace = true }
externalities = { workspace = true }
frame-benchmarking = { workspace = true }
frame-benchmarking = { workspace = true, features = ["std"] }
hex-literal = { workspace = true }
pallet-balances = { workspace = true }
pallet-balances = { workspace = true, features = ["std"] }
sp-keyring = { workspace = true }
test-utils = { path = "../test-utils" }

Expand Down
4 changes: 2 additions & 2 deletions sidechain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ test-utils = { path = "../test-utils", optional = true }
[dev-dependencies]
env_logger = { workspace = true }
externalities = { workspace = true }
frame-benchmarking = { workspace = true }
frame-benchmarking = { workspace = true, features = ["std"] }
hex-literal = { workspace = true }
pallet-balances = { workspace = true }
pallet-balances = { workspace = true, features = ["std"] }
sp-keyring = { workspace = true }
test-utils = { path = "../test-utils" }

Expand Down
4 changes: 2 additions & 2 deletions teeracle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ timestamp = { workspace = true, optional = true }

[dev-dependencies]
externalities = { workspace = true }
frame-benchmarking = { workspace = true }
frame-benchmarking = { workspace = true, features = ["std"] }
hex-literal = { workspace = true }
sp-keyring = { workspace = true }
pallet-balances = { workspace = true }
pallet-balances = { workspace = true, features = ["std"] }
test-utils = { path = "../test-utils" }
timestamp = { workspace = true }

Expand Down
4 changes: 2 additions & 2 deletions teerex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ test-utils = { path = "../test-utils", optional = true }
[dev-dependencies]
env_logger = { workspace = true }
externalities = { workspace = true }
frame-benchmarking = { workspace = true }
frame-benchmarking = { workspace = true, features = ["std"] }
hex-literal = { workspace = true }
pallet-balances = { workspace = true }
pallet-balances = { workspace = true, features = ["std"] }
sp-keyring = { workspace = true }
test-utils = { path = "../test-utils" }
serde = { version = "1.0.171", features = ["derive"] }
Expand Down

0 comments on commit 56179fe

Please sign in to comment.