Skip to content
Cargo.toml 7.02 KiB
Newer Older
Tomasz Drwięga's avatar
Tomasz Drwięga committed
[workspace]
members = [
	"bin/node-template/node",
	"bin/node-template/pallets/template",
	"bin/node/bench",
	"bin/node/browser-testing",
	"bin/node/cli",
	"bin/node/executor",
	"bin/node/primitives",
	"bin/node/rpc-client",
	"bin/node/rpc",
	"bin/node/runtime",
	"bin/node/testing",
	"bin/utils/subkey",
	"bin/utils/chain-spec-builder",
	"client/api",
	"client/authority-discovery",
	"client/basic-authorship",
	"client/block-builder",
	"client/chain-spec",
	"client/chain-spec/derive",
	"client/cli",
	"client/consensus/aura",
	"client/consensus/babe",
	"client/consensus/babe/rpc",
	"client/consensus/common",
Web3 Philosopher's avatar
Web3 Philosopher committed
	"client/consensus/manual-seal",
	"client/consensus/pow",
	"client/consensus/uncles",
	"client/consensus/slots",
	"client/consensus/epochs",
	"client/executor/common",
	"client/executor/wasmi",
	"client/executor/wasmtime",
	"client/executor/runtime-test",
	"client/finality-grandpa",
	"client/informant",
	"client/keystore",
	"client/network",
	"client/network/test",
	"client/proposer-metrics",
	"client/rpc-servers",
	"client/rpc",
	"client/rpc-api",
	"client/service",
	"client/service/test",
	"client/state-db",
	"client/telemetry",
	"client/transaction-pool",
	"client/transaction-pool/graph",
	"utils/wasm-builder-runner",
	"frame/assets",
	"frame/aura",
	"frame/authority-discovery",
	"frame/authorship",
	"frame/babe",
	"frame/balances",
	"frame/collective",
	"frame/contracts",
	"frame/contracts/rpc",
	"frame/contracts/rpc/runtime-api",
	"frame/democracy",
	"frame/elections-phragmen",
	"frame/elections",
	"frame/evm",
	"frame/example",
	"frame/example-offchain-worker",
	"frame/executive",
	"frame/finality-tracker",
	"frame/generic-asset",
	"frame/grandpa",
	"frame/identity",
	"frame/im-online",
	"frame/indices",
	"frame/membership",
	"frame/metadata",
	"frame/nicks",
	"frame/offences",
Gavin Wood's avatar
Gavin Wood committed
	"frame/proxy",
	"frame/randomness-collective-flip",
	"frame/recovery",
	"frame/scored-pool",
	"frame/session",
	"frame/session/benchmarking",
Gavin Wood's avatar
Gavin Wood committed
	"frame/society",
	"frame/staking",
	"frame/staking/reward-curve",
	"frame/staking/fuzzer",
	"frame/sudo",
	"frame/support",
	"frame/support/procedural",
	"frame/support/procedural/tools",
	"frame/support/procedural/tools/derive",
	"frame/support/test",
	"frame/system",
	"frame/system/benchmarking",
	"frame/system/rpc/runtime-api",
	"frame/timestamp",
	"frame/transaction-payment",
	"frame/transaction-payment/rpc",
	"frame/transaction-payment/rpc/runtime-api",
	"frame/treasury",
	"frame/utility",
	"frame/vesting",
	"primitives/allocator",
	"primitives/application-crypto",
	"primitives/application-crypto/test",
	"primitives/authority-discovery",
	"primitives/authorship",
	"primitives/block-builder",
	"primitives/consensus/aura",
	"primitives/consensus/babe",
	"primitives/consensus/common",
	"primitives/consensus/pow",
	"primitives/consensus/vrf",
	"primitives/chain-spec",
Gavin Wood's avatar
Gavin Wood committed
	"primitives/database",
	"primitives/debug-derive",
	"primitives/storage",
	"primitives/finality-tracker",
	"primitives/finality-grandpa",
	"primitives/inherents",
	"primitives/keyring",
	"primitives/offchain",
	"primitives/panic-handler",
	"primitives/phragmen",
	"primitives/phragmen/fuzzer",
	"primitives/phragmen/compact",
	"primitives/rpc",
	"primitives/runtime-interface",
	"primitives/runtime-interface/proc-macro",
	"primitives/runtime-interface/test-wasm",
	"primitives/runtime-interface/test-wasm-deprecated",
	"primitives/runtime-interface/test",
	"primitives/serializer",
	"primitives/session",
	"primitives/api",
	"primitives/api/proc-macro",
	"primitives/api/test",
	"primitives/arithmetic",
	"primitives/arithmetic/fuzzer",
	"primitives/sandbox",
	"primitives/staking",
	"primitives/version",
	"primitives/timestamp",
	"primitives/test-primitives",
	"primitives/transaction-pool",
Bastian Köcher's avatar
Bastian Köcher committed
	"primitives/tracing",
	"test-utils/client",
	"test-utils/runtime",
	"test-utils/runtime/client",
	"test-utils/runtime/transaction-pool",
	"utils/browser",
	"utils/build-script-utils",
	"utils/fork-tree",
	"utils/frame/benchmarking-cli",
Chevdor's avatar
Chevdor committed

# The list of dependencies below (which can be both direct and indirect dependencies) are crates
# that are suspected to be CPU-intensive, and that are unlikely to require debugging (as some of
# their debug info might be missing) or to require to be frequently recompiled. We compile these
# dependencies with `opt-level=3` even in "dev" mode in order to make "dev" mode more usable.
# The majority of these crates are cryptographic libraries.
#
# Note that this does **not** affect crates that depend on Substrate. In other words, if you add
# a dependency on Substrate, you have to copy-paste this list in your own `Cargo.toml` (assuming
# that you want the same list). This list is only relevant when running `cargo build` from within
# the Substrate workspace.
#
# If you see an error mentioning "profile package spec ... did not match any packages", it
# probably concerns this list.
#
# This list is ordered alphabetically.
[profile.dev.package]
aes-ctr = { opt-level = 3 }
aes-soft = { opt-level = 3 }
aesni = { opt-level = 3 }
blake2 = { opt-level = 3 }
blake2-rfc = { opt-level = 3 }
blake2b_simd = { opt-level = 3 }
blake2s_simd = { opt-level = 3 }
chacha20-poly1305-aead = { opt-level = 3 }
cranelift-codegen = { opt-level = 3 }
cranelift-wasm = { opt-level = 3 }
crc32fast = { opt-level = 3 }
crossbeam-deque = { opt-level = 3 }
crossbeam-queue = { opt-level = 3 }
crypto-mac = { opt-level = 3 }
ctr = { opt-level = 3 }
cuckoofilter = { opt-level = 3 }
curve25519-dalek = { opt-level = 3 }
ed25519-dalek = { opt-level = 3 }
evm-core = { opt-level = 3 }
evm-runtime = { opt-level = 3 }
flate2 = { opt-level = 3 }
futures-channel = { opt-level = 3 }
hashbrown = { opt-level = 3 }
h2 = { opt-level = 3 }
hash-db = { opt-level = 3 }
hmac = { opt-level = 3 }
httparse = { opt-level = 3 }
integer-sqrt = { opt-level = 3 }
keccak = { opt-level = 3 }
libm = { opt-level = 3 }
librocksdb-sys = { opt-level = 3 }
libsecp256k1 = { opt-level = 3 }
libz-sys = { opt-level = 3 }
mio = { opt-level = 3 }
nalgebra = { opt-level = 3 }
num-bigint = { opt-level = 3 }
parking_lot = { opt-level = 3 }
parking_lot_core = { opt-level = 3 }
percent-encoding = { opt-level = 3 }
primitive-types = { opt-level = 3 }
ring = { opt-level = 3 }
rustls = { opt-level = 3 }
salsa20 = { opt-level = 3 }
salsa20-core = { opt-level = 3 }
sha2 = { opt-level = 3 }
sha3 = { opt-level = 3 }
smallvec = { opt-level = 3 }
snow = { opt-level = 3 }
twox-hash = { opt-level = 3 }
uint = { opt-level = 3 }
wasmi = { opt-level = 3 }
x25519-dalek = { opt-level = 3 }
yamux = { opt-level = 3 }
zeroize = { opt-level = 3 }

Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
[profile.release]
# Substrate runtime requires unwinding.