-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
42 lines (38 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
[package]
name = "covclaim"
version = "0.2.0"
edition = "2021"
build = "build.rs"
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
[dependencies]
tokio = { version = "1.38.0", features = ["full"] }
axum = "0.7.5"
diesel = { version = "2.2.3", features = ["sqlite", "postgres", "r2d2", "chrono"] }
diesel_migrations = "2.2.0"
dotenvy = "0.15.7"
env_logger = "0.11.3"
log = "0.4.22"
zeromq = { version = "0.3.5", features = ["tokio", "tcp-transport"] }
reqwest = { version = "0.11.27", features = ["json"] }
serde_json = "1.0.118"
base64 = "0.22.1"
serde = { version = "1.0.203", features = ["derive"] }
elements = { version = "0.24.1", features = ["serde"] }
tower-http = { version = "0.5.2", features = ["cors"] }
hex = { version = "0.4.3", features = ["alloc", "serde", "std"] }
serde_with = "3.8.1"
crossbeam-channel = "0.5.13"
r2d2 = "0.8.10"
rayon = "1.10.0"
num_cpus = "1.16.0"
async-trait = "0.1.80"
ratelimit = "0.9.1"
[patch.crates-io]
secp256k1-zkp = { git = "https://github.com/BlockstreamResearch/rust-secp256k1-zkp.git", rev = "60e631c24588a0c9e271badd61959294848c665d" }
[build-dependencies]
built = { version = "0.7.3", features = ["git2"] }