-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (49 loc) · 1.92 KB
/
Cargo.toml
File metadata and controls
55 lines (49 loc) · 1.92 KB
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
[package]
name = "dd_rpc"
version = "0.1.0"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
argon2 = "0.5.2"
axum = { version = "0.8.3", features = ["ws", "macros"] }
dotenvy = "0.15.7"
hex = "0.4.3"
jwt-simple = { version = "0.12.12", default-features = false, features = ["pure-rust"] }
lettre = {version = "0.11.4", features = ["rustls-tls"]}
openssl = {version = "0.10.72", features = ["vendored"]}
rand = { version = "0.9.2", features = ["std_rng", "os_rng"] }
secp256k1 = {version = "0.31.1", features = ["rand", "global-context"]}
serde = {version = "1.0.195", features = ["derive"]}
siwe = { git = "https://github.com/crypdoughdoteth/siwe-rs", rev = "407f2e917185bc88ae70c65a5e4f92acf015779b", features = ["alloy", "serde"] }
sqlx = {version = "0.8", features = ["postgres", "macros", "runtime-tokio", "tls-rustls", "time", "uuid"]}
time = {version = "0.3.36" , features = ["serde"]}
tokio = {version = "1.47.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"
alloy = {version = "1.0", features = ["node-bindings", "network", "rpc-types"]}
thiserror = "1.0.63"
mimalloc = "0.1.45"
hyper = "1.6.0"
hyper-util = { version = "0.1", features = ["full"] }
reqwest = { version = "0.12.24", features = ["json", "rustls-tls", "cookies", "stream"] }
http-body-util = "0.1"
serde_json = "1.0.140"
tokio-tungstenite = { version = "0.26.2", features = ["native-tls"] }
http = "1.3.1"
futures-util = "0.3.31"
[dev-dependencies]
alloy = {version = "1.0", features = ["node-bindings", "network", "rpc-types", "signer-local"]}
criterion = { version = "0.5", features = ["async", "async_tokio", "html_reports"] }
[[bench]]
name = "bench"
harness = false
[features]
dev = []
[profile.release]
# debug = true
lto = "fat"
codegen-units = 1
opt-level = 3
strip = "debuginfo"