Skip to content

Commit

Permalink
basic command-line tool
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Apr 23, 2024
1 parent 95d3c4b commit 44c1268
Show file tree
Hide file tree
Showing 4 changed files with 414 additions and 9 deletions.
257 changes: 257 additions & 0 deletions Cargo.lock

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

14 changes: 13 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,19 @@ edition = "2021"
[lib]
name = "ssi"

[[bin]]
name = "ssi"
path = "src/main.rs"
required-features = ["cli"]

[dependencies]
amplify = "4.6.0"
baid58 = "0.4.4"
secp256k1 = "0.29.0"
secp256k1 = { version = "0.29.0", features = ["rand", "global-context"] }
rand = "0.8.5"
clap = { version = "4.5.4", features = ["derive"], optional = true }
crossbeam-channel = { version = "0.5.12", optional = true }

[features]
default = ["cli"]
cli = ["clap", "crossbeam-channel"]
Loading

0 comments on commit 44c1268

Please sign in to comment.