-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
40 lines (38 loc) · 1.1 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
[package]
name = "satoshifamily"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.94"
async-trait = "0.1.83"
dotenvy = "0.15.7"
env_logger = "0.11.5"
log = "0.4.22"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
sqlx = { version = "0.8.2", features = ["postgres", "runtime-tokio-native-tls", "chrono"] }
structopt = "0.3.26"
tokio = { version = "1.42.0", features = ["full"] }
jsonrpsee = { version = "0.24.3", features = [
"server",
"http-client",
"ws-client",
"macros",
"client-ws-transport-tls",
] }
tower = { version = "0.4.13", features = ["full"] }
tower-http = { version = "0.5.2", features = ["full"] }
tower_http_cors = { package = "tower-http", version = "0.4.4", features = ["full"] }
axum = "0.7.9"
chrono = { version = "0.4.39", features = ["serde"] }
sha256 = "1.5.0"
regex = "1.11.1"
jsonwebtoken = "9.3.0"
hyper = { version = "1.5.1", features = ["full"] }
minijinja = { version = "2.5.0", features = ["loader"] }
mime_guess = "2.0.5"
tower-cookies = "0.10.0"
url = "2.5.4"
rand = "0.8.5"
[build]
rustflags = ["--cfg=sqlx_macros_unstable"]