mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 14:58:03 +00:00
92dc635f3c
* Bump versions of sp-core and dependencies to v4.0.0 * Update references from `4.0.0-dev` –> `4.0.0` * Funny whitespace * Funny whitespace 2
32 lines
909 B
TOML
32 lines
909 B
TOML
[package]
|
|
name = "sp-core-hashing"
|
|
version = "4.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Primitive core crate hashing implementation."
|
|
documentation = "https://docs.rs/sp-core-hashing"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
sp-std = { version = "4.0.0", default-features = false, path = "../../std" }
|
|
byteorder = { version = "1.3.2", default-features = false }
|
|
|
|
blake2-rfc = { version = "0.2.18", default-features = false }
|
|
tiny-keccak = { version = "2.0.1", features = ["keccak"] }
|
|
sha2 = { version = "0.9.2", default-features = false }
|
|
twox-hash = { version = "1.5.0", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"blake2-rfc/std",
|
|
"sha2/std",
|
|
"sp-std/std",
|
|
"twox-hash/std",
|
|
]
|