forked from Trustless-OSS/Toss-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (44 loc) · 1.59 KB
/
Copy pathCargo.toml
File metadata and controls
48 lines (44 loc) · 1.59 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
[package]
name = "toss-backend"
description="This backend is made for Trustless-OSS by using Rust axum to make Blazzing Fast server !!"
version = "0.1.0"
edition = "2021"
default-run = "toss-backend"
[[bin]]
name = "toss-backend"
path = "src/main.rs"
[[bin]]
name = "migrate"
path = "src/bin/migrate.rs"
[dependencies]
anyhow = "1"
axum = { version = "0.8", features = ["json", "macros"] }
base64 = "0.22"
chrono = { version = "0.4", features = ["serde"] }
dotenvy = "0.15"
hex = "0.4"
hmac = "0.12"
jiff = "0.2"
jsonwebtoken = { version = "9", features = ["use_pem"] }
redis = { version = "0.29", features = ["aio", "tokio-rustls-comp"] }
regex = "1"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream"] }
rust_decimal = { version = "1", features = ["serde-with-str"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
stellar-base = "0.7"
stellar-xdr = { version = "27.0.0", features = ["base64"] }
thiserror = "2"
toasty = { version = "0.10", default-features = false, features = ["postgresql", "rustls", "rust_decimal", "jiff", "serde", "migration"] }
toasty-cli = "0.10"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal", "net", "time"] }
tower-http = { version = "0.6", features = ["trace", "cors"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
uuid = { version = "1", features = ["serde", "v4", "v7"] }
utoipa = { version = "5.5.0", features = ["axum_extras"] }
utoipa-axum = "0.2.0"
utoipa-swagger-ui = { version = "9.0.2", features = ["axum"] }
[features]
default = []