forked from Concordium/concordium-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (53 loc) · 1.25 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "misc_tools"
version = "2.0.1"
authors = ["Concordium AG <[email protected]>"]
edition = "2018"
license-file = "../../LICENSE-APACHE"
[features]
# Force openssl-sys to staticly link in the openssl library. Necessary when
# cross compiling to x86_64-unknown-linux-musl.
vendored-ssl = ["openssl-sys/vendored"]
[dependencies]
clap = "2.33"
dialoguer = "0.10"
pairing = "0.15"
rand = "=0.7"
serde = "1.0"
serde_json = "1.0"
ed25519-dalek = "=1.0"
curve25519-dalek = "3.0"
structopt = "0.3"
hex = "0.4"
sha2 = "0.10"
hkdf = "0.12"
ff = "0.5"
hmac = "0.12"
reqwest = {version = "0.11", features = ["json", "blocking"]}
url = "2.1.1"
chrono = "0.4"
either = "1.6"
openssl-sys = {version = "0.9", optional = true}
aes = "0.8"
base64 = "0.21"
pbkdf2 = "0.11"
rpassword = "6.0"
bitvec = "1"
crossterm = "0.22"
anyhow = "1.0"
[dependencies.ed25519_hd_key_derivation]
path = "../rust-src/ed25519_hd_key_derivation"
version = "1.0.0"
[dependencies.key_derivation]
path = "../rust-src/key_derivation"
version = "1.1.0"
[dependencies.keygen_bls]
path = "../rust-src/keygen_bls"
version = "2.0.0"
[dependencies.concordium_base]
path = "../rust-src/concordium_base"
version = "*"
features = ["encryption"]
[lib]
name = "client_server_helpers"
path = "src/lib.rs"