Skip to content

Commit

Permalink
Pgen v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ctsrc committed Apr 6, 2024
1 parent 4484848 commit 3dc9086
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,11 @@ resolver = "2"
members = ["crates/bip39-lexical-data", "crates/eff-lexical-data", "crates/pgen", ]

[workspace.dependencies]

# workspace deps
bip39-lexical-data = { path = "crates/bip39-lexical-data", version = "1.0.0" }
eff-lexical-data = { path = "crates/eff-lexical-data", version = "1.0.0" }

# crates.io deps
rand = "0.8.5"
clap = { version = "4.5.4", default-features = false, features = ["std", "derive", "help", "usage", "error-context"] }
6 changes: 3 additions & 3 deletions crates/pgen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ description = "Passphrase Generator"
license = "ISC"
readme = "README.md"
repository = "https://github.com/ctsrc/Pgen/crates/pgen"
version = "2.0.0-alpha.1"
version = "2.0.0"
authors = ["Erik Nordstrøm <erik@nordstroem.no>"]
categories = ["command-line-utilities", "cryptography"]
edition = "2021"

[dependencies]
rand = { workspace = true }
clap = { workspace = true }
bip39-lexical-data = { path = "../bip39-lexical-data", version = "1.0.0" }
eff-lexical-data = { path = "../eff-lexical-data", version = "1.0.0" }
bip39-lexical-data = { workspace = true }
eff-lexical-data = { workspace = true }

0 comments on commit 3dc9086

Please sign in to comment.