29 lines
860 B
TOML
29 lines
860 B
TOML
[package]
|
|
name = "stick"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
askama = "0.16.0"
|
|
async-trait = "0.1.89"
|
|
axum = { version = "0.8.9", features = ["macros"] }
|
|
axum-extra = { version = "0.12.6", features = ["cookie"] }
|
|
bcrypt = "0.19.1"
|
|
bson = { version = "3.1.0", features = ["chrono-0_4", "serde", "serde_with-3"] }
|
|
chrono = { version = "0.4.44", features = ["serde"] }
|
|
dotenvy = "0.15.7"
|
|
futures = "0.3.32"
|
|
jsonwebtoken = { version = "10.4.0", features = ["rust_crypto"] }
|
|
mongodb = { version = "3.7.0", features = ["bson-3"] }
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.150"
|
|
serde_with = "3.20.0"
|
|
thiserror = "2.0.18"
|
|
time = "0.3.47"
|
|
tokio = { version = "1.52.3", features = ["full"] }
|
|
tower-http = { version = "0.6.11", features = ["trace", "cors"] }
|
|
tracing = "0.1.44"
|
|
tracing-subscriber = "0.3.23"
|
|
rand = "0.8.5"
|
|
|