-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 826 Bytes
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 826 Bytes
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
[package]
name = "fortichain-server"
version = "0.1.0"
edition = "2024"
publish = false
authors = [
"Ebube Onuora onuoraebube44@gmail.com",
"Abraham Ujah <abeeujah@gmail.com>",
]
[lib]
path = "src/lib.rs"
[[bin]]
path = "src/main.rs"
name = "fortichain_server"
[dependencies]
anyhow = "1.0.98"
axum = "0.8.4"
config = "0.15.11"
dotenvy = "0.15.7"
serde = { version = "1.0.219", features = ["derive"] }
tokio = { version = "1.45.1", features = [
"macros",
"rt-multi-thread",
"signal",
] }
tower = "0.5.2"
sqlx = { version = "0.8.6", features = ["runtime-tokio-rustls", "postgres","macros"] }
tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] }
tower-http = { version = "0.6.1", features = [
"trace",
] }
tracing = "0.1.40"
uuid = { version = "1.17.0", features = ["v7"] }