-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (48 loc) · 1.2 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
[package]
name = "distributed-key-management"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "server"
path = "server.rs"
[[bin]]
name = "client"
path = "client.rs"
[profile.release]
debug = true
[dependencies]
lazy_static = "1.4.0"
secp256k1 = { version = "0.28.0", features = ["hashes", "global-context", "rand"] }
actix-web = "4"
serde = "1.0.136"
dotenv = "0.15.0"
futures = "0.3"
actix-cors = "0.6.5"
log = "0.4.20"
derive_more = "0.99.17"
env_logger = "0.10.1"
validator = { version = "0.16.1", features = ["derive"] }
hex = "0.4.3"
json = "0.12.4"
bitcoin_hashes = "0.13.0"
num-bigint = "0.4.4"
magic-crypt = "3.1.13"
ecies = "0.2.6"
tonic = "0.10.2"
tonic-reflection = "0.10.2"
prost = "0.12.3"
prost-types = "0.12.3"
tonic-build = "0.10.2"
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
num-traits = "0.2.17"
tokio = { version = "1.35.1", features = ["full"] }
reqwest = { version = "0.11.23", features = ["json"] }
to_unit = "1.0.2"
retrieve = "1.1.2"
[dependencies.mongodb]
version = "2.2.0"
default-features = false
features = ["async-std-runtime"]
[build-dependencies]
tonic-build = "0.10.2"