mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 05:38:00 +00:00
4ed67e03a4
* WIP: update codec * WIP * compiling * WIP * rename parity-scale-codec to codec * WIP * fix * remove old comments * use published crates * fix expected error msg * bump version * fmt and fix * remove old comment * fix wrong decoding impl * implement encode like for structures * undo removal of old pending changes * trailingzeroinput * Apply suggestions from code review Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com> Co-Authored-By: DemiMarie-parity <48690212+DemiMarie-parity@users.noreply.github.com> * update codec * fmt * version is 1.0.0 * show more error * fmt
43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
TOML
[package]
|
|
name = "sr-io"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
build = "build.rs"
|
|
edition = "2018"
|
|
|
|
[build-dependencies]
|
|
rustc_version = "0.2"
|
|
|
|
[dependencies]
|
|
rstd = { package = "sr-std", path = "../sr-std", default-features = false }
|
|
primitives = { package = "substrate-primitives", path = "../primitives", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false }
|
|
hash-db = { version = "0.15.0", default-features = false }
|
|
libsecp256k1 = { version = "0.2.1", optional = true }
|
|
tiny-keccak = { version = "1.4.2", optional = true }
|
|
environmental = { version = "1.0.1", optional = true }
|
|
substrate-state-machine = { path = "../state-machine", optional = true }
|
|
trie = { package = "substrate-trie", path = "../trie", optional = true }
|
|
|
|
[dev-dependencies]
|
|
substrate-offchain = { path = "../offchain" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"primitives/std",
|
|
"codec/std",
|
|
"rstd/std",
|
|
"hash-db/std",
|
|
"trie",
|
|
"environmental",
|
|
"substrate-state-machine",
|
|
"libsecp256k1",
|
|
"tiny-keccak"
|
|
]
|
|
nightly = []
|
|
strict = []
|
|
wasm-nice-panic-message = []
|
|
no_panic_handler = []
|
|
no_oom = []
|