-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (32 loc) · 891 Bytes
/
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
[package]
name = "dora-storage"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
kyber-rs = "0.1.0-alpha"
actix-web = "4"
anyhow = "1.0.68"
thiserror = "1.0.38"
log = "0.4.17"
pretty_env_logger = "0.4.0"
colored = "2.0.0"
enum-display = "0.1.3"
hex = "0.4.3"
clap = { version = "4.0.32", features = ["derive"] }
serde = "1.0.152"
serde_json = "1.0.91"
iota-client = { version = "2.0.1-rc.5", default-features = false, features = ["tls", "mqtt"] }
identity_iota = { version = "0.7.0-alpha" }
time = { version = "0.3.5", features = [
"std",
"serde",
"parsing",
"formatting",
], default-features = false }
rust-s3 = { version = "0.32.3" }
tokio = { version = "1.24.1" }
futures = "0.3.25"
bincode = "1.3.3"
url = "2.3.1"
reqwest = {version = "0.11.14", features = ["blocking"]}