mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 19:07:57 +00:00
c70b81444a
* Fix grammar and typo * Extend network service * Extend offchain API * Support creating unsigned UncheckedExtrinsic * Introduce srml/im-online * Bump impl and spec version * Fix web-wasm test * Apply suggestions from code review Remove parity-multiaddr dependency Co-Authored-By: Pierre Krieger <pierre.krieger1708@gmail.com> * Replace transmute with from_raw_parts * Replace PeerId.to_string() with .to_base58() Co-Authored-By: Pierre Krieger <pierre.krieger1708@gmail.com> * Update Cargo.lock * Bump impl and spec version (again) It was updated in master in the meantime. * Apply suggestions from code review Co-Authored-By: Sergei Pepyakin <sergei@parity.io> * Address comments * Add public function is_online_in_current_session() * Bump spec_version * Fix doc tests * Improve comments * Remove superfluous line * Name parameters consistently * Implement comments * Switch From to TryFrom * Use Vec instead of HashSet * Fix tests * Revert me: local testing * Fix check if already sent during session We gossip each session, hence we need to check if already sent in this session (not era). * Fix typos * Consistent terminology * Revert "Revert me: local testing" This reverts commit 73fbc29ff3e5ed71d99436318260b4f007e837f4. * Introduce IsMember trait * Implement misc comments * Remove unused function * Fix test * Fix external_addresses being written * Fix test * Add necessary trait bound * Do not increment version * Update lib.rs
44 lines
1.9 KiB
TOML
44 lines
1.9 KiB
TOML
[package]
|
|
name = "substrate-service"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
derive_more = "0.14.0"
|
|
futures = "0.1.17"
|
|
futures03 = { package = "futures-preview", version = "0.3.0-alpha.17", features = ["compat"] }
|
|
parking_lot = "0.8.0"
|
|
lazy_static = "1.0"
|
|
log = "0.4"
|
|
slog = {version = "^2", features = ["nested-values"]}
|
|
tokio-executor = "0.1.7"
|
|
tokio-timer = "0.2"
|
|
exit-future = "0.1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
sysinfo = "0.9.0"
|
|
target_info = "0.1"
|
|
keystore = { package = "substrate-keystore", path = "../../core/keystore" }
|
|
sr-io = { path = "../../core/sr-io" }
|
|
runtime_primitives = { package = "sr-primitives", path = "../../core/sr-primitives" }
|
|
primitives = { package = "substrate-primitives", path = "../../core/primitives" }
|
|
consensus_common = { package = "substrate-consensus-common", path = "../../core/consensus/common" }
|
|
network = { package = "substrate-network", path = "../../core/network" }
|
|
client = { package = "substrate-client", path = "../../core/client" }
|
|
client_db = { package = "substrate-client-db", path = "../../core/client/db", features = ["kvdb-rocksdb"] }
|
|
parity-codec = "4.1.1"
|
|
substrate-executor = { path = "../../core/executor" }
|
|
transaction_pool = { package = "substrate-transaction-pool", path = "../../core/transaction-pool" }
|
|
rpc = { package = "substrate-rpc-servers", path = "../../core/rpc-servers" }
|
|
tel = { package = "substrate-telemetry", path = "../../core/telemetry" }
|
|
offchain = { package = "substrate-offchain", path = "../../core/offchain" }
|
|
parity-multiaddr = { package = "parity-multiaddr", version = "0.5.0" }
|
|
|
|
[dev-dependencies]
|
|
substrate-test-runtime-client = { path = "../test-runtime/client" }
|
|
node-executor = { path = "../../node/executor" }
|
|
node-primitives = { path = "../../node/primitives" }
|
|
node-runtime = { path = "../../node/runtime" }
|
|
grandpa = { package = "substrate-finality-grandpa", path = "../../core/finality-grandpa" }
|