-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
48 lines (42 loc) · 1.17 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
[package]
name = "gotham-engine"
version = "1.0.0"
edition = "2021"
#[lib]
#name = "backbone"
#path = "src/lib.rs"
[dependencies]
rocket.workspace = true
serde.workspace = true
serde_json.workspace = true
log.workspace = true
config.workspace = true
uuid.workspace = true
failure.workspace = true
jsonwebtoken.workspace = true
hex.workspace = true
two-party-ecdsa.workspace = true
rusoto_core = { version = "0.47.0", optional = true }
rocksdb = { version = "0.21.0", optional = true }
rusoto_dynamodb = { version = "0.47.0", optional = true }
chrono = "0.4.26"
cargo-pants = "0.4.16"
redis = { version = "0.23.0", features = ["cluster"] }
thiserror = "1.0"
erased-serde = "0.3"
async-trait = "0.1.67"
tokio = { version = "1", features = ["full"] }
typetag = "0.2"
[workspace.dependencies]
serde = { version = "1", features = ["serde_derive"] }
serde_json = "1"
log = "0.4"
reqwest = "0.9.5"
failure = "0.1"
floating-duration = "0.1.2"
rocket = { version = "0.5.0-rc.1", default-features = false, features = ["json"] }
config = "0.13.3"
uuid = { version = "0.7", features = ["v4"] }
jsonwebtoken = "8"
hex = "0.4"
two-party-ecdsa = { git = "https://github.com/ZenGo-X/two-party-ecdsa.git" }