From 5de7bebaa290da6d29e2913bfd8e1befbd1f99cf Mon Sep 17 00:00:00 2001 From: kylezs Date: Wed, 18 Oct 2023 19:43:22 +1100 Subject: [PATCH] chore: remove default-features false (#4132) --- api/lib/Cargo.toml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/api/lib/Cargo.toml b/api/lib/Cargo.toml index 983cd64ccb..896b532ef2 100644 --- a/api/lib/Cargo.toml +++ b/api/lib/Cargo.toml @@ -25,6 +25,7 @@ chainflip-engine = { path = "../../engine/" } utilities = { path = "../../utilities/" } # State Chain +cf-amm = { path = "../../state-chain/amm" } cf-chains = { path = "../../state-chain/chains" } cf-primitives = { path = "../../state-chain/primitives" } chainflip-node = { path = "../../state-chain/node" } @@ -40,12 +41,12 @@ pallet-cf-pools = { path = '../../state-chain/pallets/cf-pools' } pallet-cf-threshold-signature = { path = "../../state-chain/pallets/cf-threshold-signature" } pallet-cf-validator = { path = "../../state-chain/pallets/cf-validator" } state-chain-runtime = { path = "../../state-chain/runtime" } -frame-system = { git = 'https://github.com/chainflip-io/substrate.git', tag = 'chainflip-monthly-2023-08+2' } -cf-amm = { path = "../../state-chain/amm" } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } -# Substrate key types + +# Substrate +frame-system = { git = 'https://github.com/chainflip-io/substrate.git', tag = 'chainflip-monthly-2023-08+2' } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } sp-consensus-aura = { git = 'https://github.com/chainflip-io/substrate.git', tag = 'chainflip-monthly-2023-08+2' } sp-core = { git = 'https://github.com/chainflip-io/substrate.git', tag = 'chainflip-monthly-2023-08+2' } sp-consensus-grandpa = { git = 'https://github.com/chainflip-io/substrate.git', tag = 'chainflip-monthly-2023-08+2' } -codec = { package = "parity-scale-codec", version = "3.6.1" } \ No newline at end of file +codec = { package = "parity-scale-codec", version = "3.6.1" }