This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
77 lines (72 loc) · 2.81 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[package]
name = "seahorse"
description = "A generic cap-style cryptocurrency keystore."
authors = ["Espresso Systems <[email protected]>"]
version = "0.3.0"
edition = "2018"
license = "GPL-3.0-or-later"
[dependencies]
arbitrary = { version="1.0", features=["derive"] }
ark-serialize = { version = "0.3.0", features = ["derive"] }
ark-std = { version = "0.3.0", default-features = false }
async-scoped = { version = "0.7.1", features = ["use-async-std"] }
async-std = { version = "1.10.0", features = ["unstable", "attributes"] }
async-trait = "0.1"
bincode = "1.3.3"
bip0039 = "0.10"
chacha20 = "0.9"
chrono = { version = "0.4", features = ["serde"] }
criterion = {version = "0.3.6", features = ["async_std", "html_reports", "cargo_bench_support", "csv_output"], optional = true }
derivative = "2.2"
derive_more = "0.99"
futures = "0.3.25"
generic-array = { version = "0.14.4", features = ["serde"] }
hmac = "0.12"
image = "0.24"
itertools = "0.10"
lazy_static = "1.4.0"
num-bigint = "0.4"
num-traits = "0.2"
pipe = { version = "0.4" }
primitive-types = "0.12"
proptest = { version = "1.0.0", optional = true }
rand_chacha = { version = "0.3.1", features = ["serde1"] }
regex = "1.7.0"
rpassword = "7.1"
rust-argon2 = "1.0.0"
rustyline = "9.0.0"
serde = { version = "1.0", features = ["derive"] }
sha3 = "^0.10"
snafu = { version = "0.7", features = ["backtraces"] }
structopt = "0.3"
strum = "0.24"
strum_macros = "0.24"
surf = "2.3"
tempdir = "0.3"
tracing = "0.1"
zeroize = "1.3"
# local dependencies
atomic_store = { git = "https://github.com/EspressoSystems/atomicstore.git", tag = "0.1.3" }
commit = { git = "https://github.com/EspressoSystems/commit.git", tag = "0.2.0" }
key-set = { git = "https://github.com/EspressoSystems/key-set.git" }
espresso-macros = { git = "https://github.com/EspressoSystems/espresso-macros.git", tag = "0.1.0" }
jf-cap = { features=["std"], git = "https://github.com/EspressoSystems/cap.git", branch = "testnet-v1" }
jf-primitives = { features=["std"], git = "https://github.com/EspressoSystems/jellyfish.git", tag = "0.1.2" }
jf-utils = { features=["std"], git = "https://github.com/EspressoSystems/jellyfish.git", tag = "0.1.2" }
arbitrary-wrappers = { git = "https://github.com/EspressoSystems/arbitrary-wrappers.git"}
reef = { git = "https://github.com/EspressoSystems/reef.git" }
tagged-base64 = { git = "https://github.com/EspressoSystems/tagged-base64.git", tag = "0.2.1" }
[dev-dependencies]
criterion = {version = "0.3.6", features = ["async_std", "html_reports", "cargo_bench_support", "csv_output"] }
proptest = "1.0.0"
quickcheck = "1.0"
quickcheck_macros = "1.0"
rand = "0.8.5"
reef = { git = "https://github.com/EspressoSystems/reef.git", features = ["testing"] }
[features]
slow-tests = []
testing = ["proptest", "criterion", "reef/testing"]
[[bench]]
name = "generic"
harness = false
required-features = ["testing"]