-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (35 loc) · 1.08 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
[workspace]
members = [ "rhoast_utils", "rust_client_config", "rhoast_client", "rhoast_wallet", "rhoast_client_v03", "rhoast_functions"]
default-members = [ "rhoast_utils", "rust_client_config", "rhoast_client", "rhoast_wallet", "rhoast_client_v03", "rhoast_functions"]
[package]
name = "rhoast-lib"
version = "0.1.0"
edition = "2021"
[workspace.dependencies]
structopt = "0.3"
config = "0.13.1"
prost = "0.10.4"
tokio = { version = "1.19.2", features = ["full"] }
tonic = "0.7.2"
blake2 = "0.10.4"
sha3 = "0.10.6"
bs58 = "0.4.0"
hex = "0.4.3"
secp256k1 = {version = "0.21.3", features = [ "rand-std", "recovery"]}
base16 = "0.2.1"
bitcoin_hashes = "0.11.0"
reqwest = { version ="0.11.13", features = ["blocking", "json"] }
serde = { version ="1.0.147", features = ["derive"]}
chrono = "0.4.23"
futures = "0.3.25"
csv = "1.1"
serde_json = "1.0.94"
actix-web = "3.3.2"
dotenv = "0.15.0"
listenfd = "0.3"
actix-cors="0.5.1"
handlebars = "4.3.7"
tonic-build = "0.7.2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tonic-build = "0.7.2"