-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 808 Bytes
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 808 Bytes
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 = "entropic-object-store"
version = "0.1.0"
authors = ["Chris Dickinson <christopher.s.dickinson@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.17"
anyhow = "1.0.22"
thiserror = "1.0.9"
sha2 = "0.8.0"
base64 = "0.11.0"
digest = "0.8.0"
sha-1 = "0.8.1"
sha1 = "0.6.0"
hex = "0.4.0"
flate2 = { version = "1.0.13", features = ["tokio"] }
structopt = "0.3.5"
dirs = "2.0.2"
colored = "1.9.0"
futures = "0.3.1"
memmap = "0.7.0"
rayon = "1.2.1"
sodiumoxide = "0.2.5"
pem = "0.7.0"
chrono = "0.4.10"
byteorder = "1.3.2"
[dependencies.async-std]
version = "1.2.0"
features = ["attributes"]
[[bin]]
name = "eos"
path = "src/bin/eos.rs"
[[bin]]
name = "sign"
path = "src/bin/sign.rs"