-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (38 loc) · 1.02 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
37
38
39
40
41
[package]
name = "agree"
version = "0.0.0"
authors = ["Alexander Weber <[email protected]>"]
edition = "2021"
license = "MIT"
description = "A multi-key-security CLI tool using Shamirs Secret Sharing."
homepage = "https://github.com/replicadse/agree"
repository = "https://github.com/replicadse/agree"
keywords = ["cli", "secret", "key", "sharing"]
categories = ["command-line-utilities"]
readme = "docs/README.md"
[features]
default = []
[dependencies]
async-trait = "0.1.72"
tokio = { version = "1.30.0", features = ["rt", "rt-multi-thread", "macros"] }
clap = "4.3.21"
clap_complete = "4.3.2"
clap_mangen = "0.2.12"
clap-markdown = "0.1.3"
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.116"
serde_yaml = "0.9.25"
bytes = "1.4.0"
itertools = "0.11.0"
anyhow = "1.0.72"
thiserror = "1.0.44"
base64 = "0.21.2"
ssss = "0.2.0"
dialoguer = "0.10.4"
argon2 = "0.5.1"
simplecrypt = "1.0.2"
uuid = { version = "1.4.1", features = ["v4"] }
fancy-regex = "0.13.0"
sha2 = "0.10.8"
[dev-dependencies]
hoox = "0.3.0"