-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (28 loc) · 1.01 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
[package]
name = "anthere"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.80"
axum = { version = "0.7.5", features = ["ws"] }
axum_csrf = { version = "0.9.0", features = ["layer"] }
axum-extra = { version = "0.9.3", features = ["typed-header"] }
axum-login = "0.15.1"
chrono = "0.4.38"
diesel = { version = "2.1.6", features = ["chrono", "ipnet-address", "postgres", "r2d2", "time"] }
diesel_migrations = "2.1.0"
dotenvy = "0.15.7"
futures = "0.3.30"
ipnet = "2.9.0"
password-auth = "1.0.0"
r2d2 = "0.8.10"
rmp-serde = "1.3.0"
serde = { version = "1.0.201", features = ["derive"] }
time = "0.3.36"
tokio = { version = "1.37.0", features = ["full"] }
tower-sessions = { version = "0.12.2", default-features = false, features = ["signed"] }
tower-sessions-core = { version = "0.12.2", features = ["deletion-task"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["fmt"] }
url = "2.5.0"