-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (27 loc) · 925 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
[package]
name = "blockhead"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.28.0", features = ["full"] }
reqwest ={ version="0.11.17", default-features = false, features = ["rustls-tls"] }
serde = { version = "1.0.162", features = ["derive"] }
serde_json = {version="1.0.96", features = ["preserve_order"]}
serde_yaml = "0.9.21"
openssl = { version = "0.10.52", features = ["vendored"] }
prometheus = { version = "0.13.3", features = ["process"] }
futures = { version = "0.3.28" }
rand = "0.8.5"
once_cell = "1.17.1"
config = { version= "0.13.3", features = ["yaml"] }
async-trait = "0.1.68"
log = "0.4.17"
env_logger = "0.10.0"
redb = "0.17.0"
actix-web = "4.3.1"
actix-cors = "0.6.4"
chrono = "0.4.24"
clap = { version = "4.2.7", features = ["derive"] }
hex = "0.4.3"
notify = { version = "5.1.0"}