mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 17:28:00 +00:00
9063d1acae
* Move `initialise_block` into `Core` trait as it is crucial calling the API functions * Switch to first version of new runtime API implementation * Fixes bug in tests * Reenable asserts * Directly use the `TestAPI` in the tests * Start improving the api traits :100644 100644 898aadc7 49217199 M Cargo.lock :100644 10064461570436465ed664 M core/client/src/backend.rs :100644 100644 5d0c886b 64d710fd M core/client/src/block_builder.rs :100644 100644 c447855e 5ecbe474 M core/client/src/client.rs :100644 100644139cef13f90dbf3d M core/client/src/error.rs :100644 100644 2800c503 3298e66a M core/client/src/runtime_api.rs :100644 100644affa1c5c809b08bc M core/primitives/src/lib.rs :100644 1006442877dfa9d5547413 M core/sr-api/Cargo.toml :100644 100644 9a49784d 6a625a03 M core/sr-api/src/lib.rs :100644 100644 7c28e1c7 a1a444a9 M core/sr-primitives/src/traits.rs :100644 1006442e113ab6dcc01a6d M srml/metadata/Cargo.toml :100644 100644ea722a700809531aM srml/metadata/src/lib.rs * Refactoring * Move `sr-api` into client and more refactoring * Fixes tests * Some documentation and cleanup * Fixes compilation after rebase * More refactoring and more documentation * Makes `substrate-client` compilable on `wasm` On `wasm` it basically just exports the runtime api stuff. * Fixes grumbles * Updates wasm files after rebasing the master * Remove TODO comment * Remove whitespaces * Fixes after rebasing master * Another rebase, another fix commit
90 lines
1.8 KiB
TOML
90 lines
1.8 KiB
TOML
[[bin]]
|
|
name = "substrate"
|
|
path = "node/src/main.rs"
|
|
|
|
[package]
|
|
name = "substrate"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
error-chain = "0.12"
|
|
node-cli = { path = "node/cli" }
|
|
futures = "0.1"
|
|
ctrlc = { version = "3.0", features = ["termination"] }
|
|
|
|
[build-dependencies]
|
|
vergen = "2"
|
|
|
|
[workspace]
|
|
members = [
|
|
"core/cli",
|
|
"core/client",
|
|
"core/client/db",
|
|
"core/consensus/common",
|
|
"core/consensus/aura",
|
|
"core/consensus/rhd",
|
|
"core/executor",
|
|
"core/finality-grandpa",
|
|
"core/keyring",
|
|
"core/network",
|
|
"core/primitives",
|
|
"core/rpc",
|
|
"core/rpc-servers",
|
|
"core/sr-io",
|
|
"core/sr-sandbox",
|
|
"core/sr-std",
|
|
"core/sr-version",
|
|
"core/transaction-pool",
|
|
"core/transaction-pool/graph",
|
|
"srml/support",
|
|
"srml/assets",
|
|
"srml/balances",
|
|
"srml/consensus",
|
|
"srml/contract",
|
|
"srml/council",
|
|
"srml/democracy",
|
|
"srml/example",
|
|
"srml/executive",
|
|
"srml/metadata",
|
|
"core/sr-primitives",
|
|
"srml/session",
|
|
"srml/staking",
|
|
"srml/system",
|
|
"srml/timestamp",
|
|
"srml/treasury",
|
|
"srml/upgrade-key",
|
|
"core/serializer",
|
|
"core/service",
|
|
"core/service/test",
|
|
"core/state-db",
|
|
"core/state-machine",
|
|
"core/test-runtime",
|
|
"core/telemetry",
|
|
"core/trie",
|
|
"core/keystore",
|
|
"node/cli",
|
|
"node/executor",
|
|
"node/primitives",
|
|
"node/runtime",
|
|
"subkey",
|
|
]
|
|
exclude = [
|
|
"node/runtime/wasm",
|
|
"core/executor/wasm",
|
|
"pwasm-alloc",
|
|
"core/test-runtime/wasm",
|
|
"test-utils/chain-spec-builder"
|
|
]
|
|
|
|
[badges]
|
|
travis-ci = { repository = "paritytech/substrate", branch = "master" }
|
|
maintenance = { status = "actively-developed" }
|
|
is-it-maintained-issue-resolution = { repository = "paritytech/substrate" }
|
|
is-it-maintained-open-issues = { repository = "paritytech/substrate" }
|
|
|
|
[profile.release]
|
|
# Substrate runtime requires unwinding.
|
|
panic = "unwind"
|