Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

move substrate-bip39 into polkadot-sdk #3579

Merged
merged 48 commits into from
Mar 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
4cfedbe
Initial commit
maciejhirsz Feb 22, 2019
e447bf5
fix: Minor rewording
maciejhirsz Feb 22, 2019
fc7fee2
Added test vectors
maciejhirsz Feb 28, 2019
0f45e0e
License and stuff for crates.io
maciejhirsz Feb 28, 2019
56c0ec3
Description in Cargo.toml
maciejhirsz Feb 28, 2019
200a922
fix: Return MiniSecretKey instead of SecretKey
maciejhirsz Mar 6, 2019
cd26df6
Merge pull request #1 from paritytech/mh-return-minisecret
maciejhirsz Mar 6, 2019
0a46997
Expose seed_from_entropy
gavofyork Mar 7, 2019
a288065
Use master schnorrkel until Jeff fixes the typos
gavofyork Mar 7, 2019
a5d760a
Use schnorrkel 0.1.0 version
stanislav-tkach Mar 19, 2019
080da45
Merge pull request #3 from paritytech/stas-schnorrkel-0-1-0-version
rphmeier Mar 19, 2019
44307fd
chore: Version bump (#4)
maciejhirsz Mar 29, 2019
62a78b9
We are a library, let's hide the Cargo.lock (#5)
tomaka Jul 4, 2019
d8a1593
Remove parallel feature from pbkdf2 (#6)
tomaka Jul 4, 2019
e4ade6d
Version bump
maciejhirsz Jul 4, 2019
c9cebeb
Update dependencies
Demi-Marie Jul 29, 2019
c399d58
Release new version
bkchr Jul 30, 2019
61cc8db
Release `0.3.1`
bkchr Jul 31, 2019
aa90dd2
update schnorrkel
NikVolf Mar 4, 2020
fc0eccf
also bump version
NikVolf Mar 4, 2020
68aace1
Merge pull request #8 from paritytech/nv-update-schnorrkel
bkchr Mar 5, 2020
3d45ddb
Switch to Apache2 license (#9)
gnunicorn Mar 13, 2020
8769b9c
Version bump
maciejhirsz Mar 13, 2020
eef2f86
Zeroize secret buffer. (#10)
cheme Aug 24, 2020
f2d476d
Update various outdated deps
adoerr Aug 25, 2021
5ae2962
Bump minor version
adoerr Aug 25, 2021
c4bd2d2
Merge pull request #11 from paritytech/ad-update-deps
bkchr Aug 25, 2021
1a607c8
Downgrade schnorrkel
jasl Aug 25, 2021
2a025c6
Bump version
jasl Aug 25, 2021
c56994c
Merge pull request #12 from jasl/patch-2
bkchr Aug 25, 2021
e7c751e
mave to 2021
nuke-web3 Nov 14, 2021
99bf393
Merge pull request #14 from paritytech/NukeManDan-patch-1
nuke-web3 Nov 15, 2021
659d167
Support for no-std (#18)
michalkucharczyk Oct 30, 2023
ab40b64
missing feature added (#19)
michalkucharczyk Oct 30, 2023
03f02a7
update schnorrkel to 0.11.4 (#20)
andresilva Dec 19, 2023
5f1d5fc
bump version to 0.4.6
andresilva Mar 5, 2024
aaf963a
prepare for migration to polkadot-sdk
andresilva Mar 5, 2024
453d611
Merge branch 'substrate-bip39'
andresilva Mar 5, 2024
96d2170
sp-core: use local substrate-bip39
andresilva Mar 5, 2024
40a28f3
substrate-bip39: update dependencies
andresilva Mar 5, 2024
d6a7542
substrate-bip39: bump version to 0.4.7
andresilva Mar 5, 2024
0bf6d8a
substrate-bip39: remove license file
andresilva Mar 5, 2024
08e6a68
substrate-bip39: format readme
andresilva Mar 5, 2024
650c68a
substrate-bip39: make markdown linter happy
andresilva Mar 5, 2024
b30718e
substrate-bip39: fix std feature handling
andresilva Mar 5, 2024
bf6b585
polkadot-subsystem-bench: use schnorrkel 0.11.4
andresilva Mar 5, 2024
08c7ce6
polkadot-subsystem-bench: fix toml formatting
andresilva Mar 5, 2024
06802cf
Merge branch 'master' into andre/substrate-bip39
andresilva Mar 6, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
172 changes: 34 additions & 138 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,7 @@ members = [
"substrate/utils/frame/rpc/system",
"substrate/utils/frame/try-runtime/cli",
"substrate/utils/prometheus",
"substrate/utils/substrate-bip39",
"substrate/utils/wasm-builder",

"templates/minimal/node",
Expand Down
2 changes: 1 addition & 1 deletion polkadot/node/core/approval-voting/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ sp-consensus = { path = "../../../../substrate/primitives/consensus/common", def
sp-consensus-slots = { path = "../../../../substrate/primitives/consensus/slots", default-features = false }
sp-application-crypto = { path = "../../../../substrate/primitives/application-crypto", default-features = false, features = ["full_crypto"] }
sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false }
# should match schnorrkel
# rand_core should match schnorrkel
rand_core = "0.6.2"
rand_chacha = { version = "0.3.1" }
rand = "0.8.5"
Expand Down
5 changes: 3 additions & 2 deletions polkadot/node/subsystem-bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,9 @@ sp-consensus-babe = { path = "../../../substrate/primitives/consensus/babe" }
sp-runtime = { path = "../../../substrate/primitives/runtime", default-features = false }
sp-timestamp = { path = "../../../substrate/primitives/timestamp" }

schnorrkel = { version = "0.9.1", default-features = false }
rand_core = "0.6.2" # should match schnorrkel
schnorrkel = { version = "0.11.4", default-features = false }
# rand_core should match schnorrkel
rand_core = "0.6.2"
rand_chacha = { version = "0.3.1" }
paste = "1.0.14"
orchestra = { version = "0.3.5", default-features = false, features = ["futures_channel"] }
Expand Down
Loading
Loading