mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 22:41:06 +00:00
Migrate rpc-servers, serializer, service and sr-io to the 2018 edition (#1732)
This commit is contained in:
committed by
Bastian Köcher
parent
91114c6c11
commit
31188dc013
@@ -3,32 +3,33 @@ name = "sr-io"
|
||||
version = "0.1.0"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
build = "build.rs"
|
||||
edition = "2018"
|
||||
|
||||
[build-dependencies]
|
||||
rustc_version = "0.2"
|
||||
|
||||
[dependencies]
|
||||
sr-std = { path = "../sr-std", default-features = false }
|
||||
substrate-primitives = { path = "../primitives", default-features = false }
|
||||
rstd = { package = "sr-std", path = "../sr-std", default-features = false }
|
||||
primitives = { package = "substrate-primitives", path = "../primitives", default-features = false }
|
||||
parity-codec = { version = "3.0", default-features = false }
|
||||
hash-db = { version = "0.11", default-features = false }
|
||||
libsecp256k1 = { version = "0.2.1", optional = true }
|
||||
tiny-keccak = { version = "1.4.2", optional = true }
|
||||
environmental = { version = "~1.0", optional = true }
|
||||
substrate-state-machine = { path = "../state-machine", optional = true }
|
||||
substrate-trie = { path = "../trie", optional = true }
|
||||
trie = { package = "substrate-trie", path = "../trie", optional = true }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
std = [
|
||||
"substrate-primitives/std",
|
||||
"primitives/std",
|
||||
"parity-codec/std",
|
||||
"sr-std/std",
|
||||
"rstd/std",
|
||||
|
||||
"hash-db/std",
|
||||
"environmental",
|
||||
"substrate-state-machine",
|
||||
"substrate-trie",
|
||||
"trie",
|
||||
"libsecp256k1",
|
||||
"tiny-keccak"
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user