diff --git a/authority/Cargo.toml b/authority/Cargo.toml index 2debd0b50..3a3a432df 100644 --- a/authority/Cargo.toml +++ b/authority/Cargo.toml @@ -17,8 +17,6 @@ sp-std = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" frame-support = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", default-features = false } frame-system = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", default-features = false } -orml-traits = { path = "../traits", version = "0.4.1-dev", default-features = false } - [dev-dependencies] sp-io = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } sp-core = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } @@ -33,7 +31,6 @@ std = [ "sp-std/std", "frame-support/std", "frame-system/std", - "orml-traits/std", ] runtime-benchmarks = [ "frame-support/runtime-benchmarks", diff --git a/benchmarking/Cargo.toml b/benchmarking/Cargo.toml index 1c72472a1..1c130a503 100644 --- a/benchmarking/Cargo.toml +++ b/benchmarking/Cargo.toml @@ -17,10 +17,10 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "rococo sp-std = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", default-features = false } sp-io = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", default-features = false } frame-support = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", default-features = false } frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", default-features = false } [dev-dependencies] +frame-system = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } hex-literal = "0.2.1" [features] @@ -33,7 +33,6 @@ std = [ "sp-api/std", "sp-std/std", "frame-support/std", - "frame-system/std", "frame-benchmarking/std", ]