-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
33 lines (30 loc) · 1.09 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
[package]
name = "dd_rpc"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
argon2 = "0.5.2"
axum = "0.7.4"
dotenvy = "0.15.7"
hex = "0.4.3"
jwt-simple = { version = "0.12.7", default-features = false, features = ["pure-rust"] }
lettre = {version = "0.11.4", features = ["rustls-tls"]}
rand = "0.8.5"
reqwest = {version = "0.11.23", features = ["json", "rustls-tls", "cookies"]}
secp256k1 = {version = "0.28.2", features = ["rand", "global-context"]}
serde = {version = "1.0.195", features = ["derive"]}
serde_json = "1.0.111"
sha3 = "0.10.8"
sqlx = {version = "0.8", features = ["postgres", "macros", "runtime-tokio", "tls-rustls", "time"]}
time = {version = "0.3.36" , features = ["serde"]}
tokio = {version = "1.35.1", features = ["rt-multi-thread", "macros"]}
tokio-test = "0.4.3"
tower-http = {version = "0.5.1", features = ["cors"]}
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
rayon = "1.10"
alloy = {version = "0.2.0", features = ["full", "node-bindings"]}
thiserror = "1.0.63"
[profile.release]
debug = true