Files
pezkuwi-subxt/substrate/Cargo.toml
T
Benjamin Kampmann 60e5011c72 Reorganising the repository - external renames and moves (#4074)
* Adding first rough ouline of the repository structure

* Remove old CI stuff

* add title

* formatting fixes

* move node-exits job's script to scripts dir

* Move docs into subdir

* move to bin

* move maintainence scripts, configs and helpers into its own dir

* add .local to ignore

* move core->client

* start up 'test' area

* move test client

* move test runtime

* make test move compile

* Add dependencies rule enforcement.

* Fix indexing.

* Update docs to reflect latest changes

* Moving /srml->/paint

* update docs

* move client/sr-* -> primitives/

* clean old readme

* remove old broken code in rhd

* update lock

* Step 1.

* starting to untangle client

* Fix after merge.

* start splitting out client interfaces

* move children and blockchain interfaces

* Move trie and state-machine to primitives.

* Fix WASM builds.

* fixing broken imports

* more interface moves

* move backend and light to interfaces

* move CallExecutor

* move cli off client

* moving around more interfaces

* re-add consensus crates into the mix

* fix subkey path

* relieve client from executor

* starting to pull out client from grandpa

* move is_decendent_of out of client

* grandpa still depends on client directly

* lemme tests pass

* rename srml->paint

* Make it compile.

* rename interfaces->client-api

* Move keyring to primitives.

* fixup libp2p dep

* fix broken use

* allow dependency enforcement to fail

* move fork-tree

* Moving wasm-builder

* make env

* move build-script-utils

* fixup broken crate depdencies and names

* fix imports for authority discovery

* fix typo

* update cargo.lock

* fixing imports

* Fix paths and add missing crates

* re-add missing crates
2019-11-14 21:51:17 +01:00

142 lines
3.4 KiB
TOML

[workspace]
members = [
"bin/node-template",
"bin/node-template/runtime",
"bin/node/cli",
"bin/node/executor",
"bin/node/primitives",
"bin/node/rpc-client",
"bin/node/rpc",
"bin/node/runtime",
"bin/node/testing",
"bin/subkey",
"client",
"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/pow",
"client/consensus/slots",
"client/consensus/uncles",
"client/db",
"client/executor",
"client/executor/runtime-test",
"client/finality-grandpa",
"client/header-metadata",
"client/keystore",
"client/network",
"client/offchain",
"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",
"client/utils/wasm-builder-runner",
"paint/assets",
"paint/aura",
"paint/authority-discovery",
"paint/authorship",
"paint/babe",
"paint/balances",
"paint/collective",
"paint/contracts",
"paint/contracts/rpc",
"paint/contracts/rpc/runtime-api",
"paint/democracy",
"paint/elections-phragmen",
"paint/elections",
"paint/evm",
"paint/example",
"paint/executive",
"paint/finality-tracker",
"paint/generic-asset",
"paint/grandpa",
"paint/im-online",
"paint/indices",
"paint/membership",
"paint/metadata",
"paint/nicks",
"paint/offences",
"paint/randomness-collective-flip",
"paint/scored-pool",
"paint/session",
"paint/staking",
"paint/staking/reward-curve",
"paint/sudo",
"paint/support",
"paint/support/procedural",
"paint/support/procedural/tools",
"paint/support/procedural/tools/derive",
"paint/support/rpc",
"paint/support/test",
"paint/system",
"paint/system/rpc",
"paint/system/rpc/runtime-api",
"paint/timestamp",
"paint/transaction-payment",
"paint/transaction-payment/rpc",
"paint/transaction-payment/rpc/runtime-api",
"paint/treasury",
"paint/utility",
"primitives/application-crypto",
"primitives/authority-discovery",
"primitives/block-builder/runtime-api",
"primitives/consensus/aura",
"primitives/consensus/babe",
"primitives/consensus/common",
"primitives/consensus/pow",
"primitives/core",
"primitives/core/debug-derive",
"primitives/core/storage",
"primitives/externalities",
"primitives/finality-grandpa",
"primitives/inherents",
"primitives/keyring",
"primitives/offchain",
"primitives/panic-handler",
"primitives/peerset",
"primitives/phragmen",
"primitives/rpc",
"primitives/runtime-interface",
"primitives/runtime-interface/proc-macro",
"primitives/runtime-interface/test-wasm",
"primitives/serializer",
"primitives/session",
"primitives/sr-api",
"primitives/sr-api/proc-macro",
"primitives/sr-api/test",
"primitives/sr-arithmetic",
"primitives/sr-io",
"primitives/sr-primitives",
"primitives/sr-sandbox",
"primitives/sr-staking-primitives",
"primitives/sr-std",
"primitives/sr-version",
"primitives/state-machine",
"primitives/transaction-pool/runtime-api",
"primitives/trie",
"primitives/wasm-interface",
"test/utils/chain-spec-builder",
"test/utils/client",
"test/utils/primitives",
"test/utils/runtime",
"test/utils/runtime/client",
"test/utils/transaction-factory",
"utils/build-script-utils",
"utils/fork-tree",
"utils/wasm-builder",
]
[profile.release]
# Substrate runtime requires unwinding.
panic = "unwind"