-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (48 loc) · 1.84 KB
/
Copy pathCargo.toml
File metadata and controls
54 lines (48 loc) · 1.84 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
[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.3"
axum = { version = "0.8.9", features = ["ws", "macros"] }
dotenvy = "0.15.7"
hex = "0.4.3"
jwt-simple = { version = "0.13.0", default-features = false, features = ["pure-rust"] }
lettre = {version = "0.11.23", features = ["rustls-tls"]}
openssl = {version = "0.10.81", features = ["vendored"]}
rand = { version = "0.10.2", features = ["sys_rng"] }
serde = {version = "1.0.229", features = ["derive"]}
siwe = { git = "https://github.com/futex-labs/siwe", rev = "1459e6ab72932bfdba79f4f950000cedebf86496", features = ["alloy", "serde"] }
sqlx = {version = "0.9", features = ["postgres", "macros", "runtime-tokio", "tls-rustls", "time", "uuid"]}
time = {version = "0.3.55" , features = ["serde"]}
tokio = {version = "1.53.1", features = ["rt-multi-thread", "macros"]}
tokio-test = "0.4.5"
tower-http = {version = "0.7.0", features = ["cors"]}
tracing = "0.1.40"
tracing-subscriber = "0.3.23"
alloy = {version = "2.3.0", features = ["node-bindings", "network", "rpc-types"]}
thiserror = "2.0.19"
mimalloc = "0.1.52"
url = "2.5.8"
reqwest = { version = "0.13.4", features = ["json", "cookies", "stream"] }
http-body-util = "0.1.4"
serde_json = "1.0.151"
tokio-tungstenite = { version = "0.30.0", features = ["native-tls"] }
http = "1.5.0"
futures-util = "0.3.33"
sstr = { version = "0.3.1", features = ["sqlx-postgres", "serde"]}
[dev-dependencies]
alloy = {version = "2.0", features = ["node-bindings", "network", "rpc-types", "signer-local"]}
criterion = { version = "0.8", 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"