34 lines
961 B
TOML
34 lines
961 B
TOML
[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"
|
|
|
|
|
|
[dependencies]
|
|
axum = { version = "0.6.20", features = ["macros"] }
|
|
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
|
|
tokio-stream = "0.1.14"
|
|
futures-util = "0.3.28"
|
|
diesel = { version = "2.1.0", features = ["chrono"] }
|
|
diesel-async = { version = "0.4.1", features = ["mysql", "deadpool"] }
|
|
dotenvy = "0.15"
|
|
chrono = "0.4.31"
|
|
|
|
[build-dependencies]
|
|
ructe.workspace = true
|
|
|
|
[workspace.dependencies]
|
|
# ructe = "0.17.0"
|
|
ructe = { git = "https://github.com/Zynh0722/ructe.git", branch = "rust-analyzer-workaround" }
|