Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,6 @@ Steps to mitigate the risks:
- Use proper encryption --- `SeedStore` helps here


## TODO

- version 1.0, with format guarantee
- (later) breaking challenge bounty


## Usage -- Example usage of the code

Reading secret from file:
Expand Down
2 changes: 1 addition & 1 deletion secretstore/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secretstore"
version = "0.9.3"
version = "1.0.0"
description = "Store a secret (such as a private key) in an encrypted file"
license = "MIT"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions seedstore-tool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "seedstore-tool"
version = "0.9.3"
version = "1.0.0"
edition = "2021"

[dependencies]
bip39 = "2.1.0"
seedstore = { version = "0.9.3", path = "../seedstore", features = ["toolhelper"] }
seedstore = { version = "1.0.0", path = "../seedstore", features = ["toolhelper"] }
4 changes: 2 additions & 2 deletions seedstore/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "seedstore"
version = "0.9.3"
version = "1.0.0"
description = "Store bitcoin secret material (BIP39 mnemonic entropy, or similar) in an encrypted file"
license = "MIT"
edition = "2021"
Expand All @@ -16,7 +16,7 @@ toolhelper = ["rpassword"]
bip39 = { version = "2.1.0", features = ["zeroize"] }
bitcoin = "0.32.5"
rpassword = { version = "7.4.0", optional = true }
secretstore = { version = "0.9.3", path = "../secretstore" }
secretstore = { version = "1.0.0", path = "../secretstore" }
zeroize = "1.8.1"

[dev-dependencies]
Expand Down