clubmanager/Cargo.toml

34 lines
1004 B
TOML
Raw Normal View History

2023-09-21 17:44:53 +00:00
[package]
name = "clubmanager"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "cm_lib"
path = "src/lib/mod.rs"
2023-09-21 17:44:53 +00:00
[dependencies]
2023-09-30 21:51:11 +00:00
axum = { version = "0.6.20", features = ["macros"] }
2023-09-21 17:44:53 +00:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.68"
tokio = { version = "1.32.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tower-http = { version = "0.4.4", features = ["full"] }
ructe.workspace = true
2023-11-07 01:54:10 +00:00
tokio-stream = { version = "0.1.14", features = ["sync", "time"] }
futures-util = "0.3.28"
diesel = { version = "2.1.0", features = ["chrono"] }
2023-11-02 22:34:40 +00:00
diesel-async = { version = "0.4.1", features = ["mysql", "deadpool"] }
dotenvy = "0.15"
chrono = "0.4.31"
2023-09-21 17:44:53 +00:00
[build-dependencies]
ructe.workspace = true
[workspace.dependencies]
# ructe = "0.17.0"
ructe = { git = "https://github.com/Zynh0722/ructe.git", branch = "rust-analyzer-workaround" }