mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 20:27:58 +00:00
887acda7d0
* Update libp2p to 0.43.0, lru to 0.7.3 * Fix websoket Incoming::Data * Rename ProtocolsHandler -> ConnectionHandler, remove inject_dis/connected, minor fixes * Fix args for inject_connection* callbacks * Fix DialPeer/DialAddress * Fix debug fmt * Add Endpoint to NetworkState * Fix Kad::get_record by key * Fix Sha2_256::digest * Fix IntoConnectionHandler * Fix borrowchk * Fix DialError::WrongPeerId * Remove NodeHandlerWrapperError * Fix KademliaEvent variants * Fix impl Add for String * Fix tabs in network_state * Apply cargo fmt * Fix a typo in req/resp * Fix tests * Fix peer_info:entry.info_expire * Fix PeerInfoBehaviour inject_address_change and inject_connection_closed * Patch libp2p to 0.44.0#6cc3b4e * Fix inject_connection_closed kad, req/resp * Apply cargo fmt * Use libp2p from crates.io * Fix review notes
140 lines
4.7 KiB
TOML
140 lines
4.7 KiB
TOML
[package]
|
|
name = "sp-core"
|
|
version = "6.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Shareable Substrate types."
|
|
documentation = "https://docs.rs/sp-core"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [
|
|
"derive",
|
|
"max-encoded-len",
|
|
] }
|
|
scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
|
|
log = { version = "0.4.16", default-features = false }
|
|
serde = { version = "1.0.136", optional = true, features = ["derive"] }
|
|
byteorder = { version = "1.3.2", default-features = false }
|
|
primitive-types = { version = "0.11.1", default-features = false, features = ["codec", "scale-info"] }
|
|
impl-serde = { version = "0.3.0", optional = true }
|
|
wasmi = { version = "0.9.1", optional = true }
|
|
hash-db = { version = "0.15.2", default-features = false }
|
|
hash256-std-hasher = { version = "0.15.2", default-features = false }
|
|
base58 = { version = "0.2.0", optional = true }
|
|
rand = { version = "0.7.3", optional = true, features = ["small_rng"] }
|
|
substrate-bip39 = { version = "0.4.4", optional = true }
|
|
tiny-bip39 = { version = "0.8.2", optional = true }
|
|
regex = { version = "1.5.4", optional = true }
|
|
num-traits = { version = "0.2.8", default-features = false }
|
|
zeroize = { version = "1.4.3", default-features = false }
|
|
secrecy = { version = "0.8.0", default-features = false }
|
|
lazy_static = { version = "1.4.0", default-features = false, optional = true }
|
|
parking_lot = { version = "0.12.0", optional = true }
|
|
sp-std = { version = "4.0.0", default-features = false, path = "../std" }
|
|
sp-debug-derive = { version = "4.0.0", default-features = false, path = "../debug-derive" }
|
|
sp-storage = { version = "6.0.0", default-features = false, path = "../storage" }
|
|
sp-externalities = { version = "0.12.0", optional = true, path = "../externalities" }
|
|
parity-util-mem = { version = "0.11.0", default-features = false, features = ["primitive-types"] }
|
|
futures = { version = "0.3.21", optional = true }
|
|
dyn-clonable = { version = "0.9.0", optional = true }
|
|
thiserror = { version = "1.0.30", optional = true }
|
|
bitflags = "1.3"
|
|
|
|
# full crypto
|
|
ed25519-dalek = { version = "1.0.1", default-features = false, features = ["u64_backend", "alloc"], optional = true }
|
|
blake2-rfc = { version = "0.2.18", default-features = false, optional = true }
|
|
schnorrkel = { version = "0.9.1", features = [
|
|
"preaudit_deprecated",
|
|
"u64_backend",
|
|
], default-features = false, optional = true }
|
|
hex = { version = "0.4", default-features = false, optional = true }
|
|
libsecp256k1 = { version = "0.7", default-features = false, features = ["static-context"], optional = true }
|
|
merlin = { version = "2.0", default-features = false, optional = true }
|
|
secp256k1 = { version = "0.21.2", default-features = false, features = ["recovery", "alloc"], optional = true }
|
|
ss58-registry = { version = "1.17.0", default-features = false }
|
|
sp-core-hashing = { version = "4.0.0", path = "./hashing", default-features = false, optional = true }
|
|
sp-runtime-interface = { version = "6.0.0", default-features = false, path = "../runtime-interface" }
|
|
|
|
[dev-dependencies]
|
|
sp-serializer = { version = "4.0.0-dev", path = "../serializer" }
|
|
hex-literal = "0.3.4"
|
|
rand = "0.7.2"
|
|
criterion = "0.3.3"
|
|
serde_json = "1.0"
|
|
sp-core-hashing-proc-macro = { version = "5.0.0", path = "./hashing/proc-macro" }
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
harness = false
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"full_crypto",
|
|
"log/std",
|
|
"thiserror",
|
|
"wasmi",
|
|
"lazy_static",
|
|
"parking_lot",
|
|
"primitive-types/std",
|
|
"primitive-types/serde",
|
|
"primitive-types/byteorder",
|
|
"primitive-types/rustc-hex",
|
|
"impl-serde",
|
|
"codec/std",
|
|
"scale-info/std",
|
|
"hash256-std-hasher/std",
|
|
"hash-db/std",
|
|
"sp-std/std",
|
|
"serde",
|
|
"blake2-rfc/std",
|
|
"ed25519-dalek/std",
|
|
"hex/std",
|
|
"base58",
|
|
"substrate-bip39",
|
|
"tiny-bip39",
|
|
"byteorder/std",
|
|
"rand",
|
|
"schnorrkel/std",
|
|
"regex",
|
|
"num-traits/std",
|
|
"secp256k1/std",
|
|
"secp256k1/global-context",
|
|
"sp-core-hashing/std",
|
|
"sp-debug-derive/std",
|
|
"sp-externalities",
|
|
"sp-storage/std",
|
|
"sp-runtime-interface/std",
|
|
"ss58-registry/std",
|
|
"zeroize/alloc",
|
|
"secrecy/alloc",
|
|
"futures",
|
|
"futures/thread-pool",
|
|
"libsecp256k1/std",
|
|
"dyn-clonable",
|
|
]
|
|
|
|
# This feature enables all crypto primitives for `no_std` builds like microcontrollers
|
|
# or Intel SGX.
|
|
# For the regular wasm runtime builds this should not be used.
|
|
full_crypto = [
|
|
"ed25519-dalek",
|
|
"blake2-rfc",
|
|
"schnorrkel",
|
|
"hex",
|
|
"libsecp256k1",
|
|
"secp256k1",
|
|
"sp-core-hashing",
|
|
"sp-runtime-interface/disable_target_static_assertions",
|
|
"merlin",
|
|
]
|