mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 00:37:57 +00:00
30c32e3d84
Moves [substrate-bip39](https://github.com/paritytech/substrate-bip39) into substrate. All git history is preserved. Dependencies have been updated to use the same version as the rest of the repo. Fixes https://github.com/paritytech/polkadot-sdk/issues/1934. --------- Co-authored-by: Maciej Hirsz <maciej.hirsz@gmail.com> Co-authored-by: Maciej Hirsz <1096222+maciejhirsz@users.noreply.github.com> Co-authored-by: Gav Wood <i@gavwood.com> Co-authored-by: Stanislav Tkach <stanislav.tkach@gmail.com> Co-authored-by: Robert Habermeier <rphmeier@gmail.com> Co-authored-by: Pierre Krieger <pierre.krieger1708@gmail.com> Co-authored-by: Demi M. Obenour <demi@parity.io> Co-authored-by: Bastian Köcher <git@kchr.de> Co-authored-by: NikVolf <nikvolf@gmail.com> Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> Co-authored-by: Benjamin Kampmann <ben@gnunicorn.org> Co-authored-by: Maciej Hirsz <hello@maciej.codes> Co-authored-by: cheme <emericchevalier.pro@gmail.com> Co-authored-by: adoerr <0xad@gmx.net> Co-authored-by: Jun Jiang <jasl9187@hotmail.com> Co-authored-by: Dan Shields <35669742+NukeManDan@users.noreply.github.com> Co-authored-by: Michal Kucharczyk <1728078+michalkucharczyk@users.noreply.github.com>
32 lines
741 B
TOML
32 lines
741 B
TOML
[package]
|
|
name = "substrate-bip39"
|
|
version = "0.4.7"
|
|
license = "Apache-2.0"
|
|
description = "Converting BIP39 entropy to valid Substrate (sr25519) SecretKeys"
|
|
documentation = "https://docs.rs/substrate-bip39"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
hmac = "0.12.1"
|
|
pbkdf2 = { version = "0.12.2", default-features = false }
|
|
schnorrkel = { version = "0.11.4", default-features = false }
|
|
sha2 = { version = "0.10.7", default-features = false }
|
|
zeroize = { version = "1.4.3", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
bip39 = "2.0.0"
|
|
rustc-hex = "2.1.0"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"hmac/std",
|
|
"pbkdf2/std",
|
|
"schnorrkel/std",
|
|
"sha2/std",
|
|
"zeroize/alloc",
|
|
"zeroize/std",
|
|
]
|