-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (32 loc) · 1.04 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "bc-envelope-cli"
version = "0.11.0"
edition = "2021"
description = "Gordian Envelope Command Line Tool."
authors = ["Blockchain Commons"]
repository = "https://github.com/BlockchainCommons/bc-envelope-cli-rust"
readme = "README.md"
license = "BSD-2-Clause-Patent"
documentation = "https://docs.rs/bc-envelope-cli"
keywords = ["encoding", "cbor", "binary", "format", "serialization"] # Up to five
categories = ["data-structures", "encoding", "command-line-utilities"] # https://crates.io/category_slugs
[[bin]]
name = "envelope"
path = "src/main.rs"
[dependencies]
dcbor = "^0.16.0"
bc-ur = "^0.6.0"
bc-envelope = "^0.21.0"
bc-components = "^0.15.0"
bc-rand = "^0.2.1"
bc-xid = "^0.3.0"
clap = { version = "^4.4.3", features = ["derive", "unstable-styles"] }
anyhow = "^1.0.0"
anstyle = "^1.0.1"
hex = "^0.4.3"
regex = "^1.9.5"
ssh-key = { version = "=0.6.6", default-features = false, features = ["dsa", "ecdsa", "rand_core", "std", "crypto", "encryption"] }
rpassword = "7.3.1"
[dev-dependencies]
assert_cmd = "^2.0.12"
indoc = "^2.0.0"