25 lines
704 B
TOML
25 lines
704 B
TOML
[package]
|
|
name = "library"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
toml = "0.8.10"
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
once_cell = "1.19.0"
|
|
tracing = "0.1.40"
|
|
tracing-appender = "0.2.3"
|
|
tracing-subscriber = { version = "0.3.18", features = ["json"] }
|
|
chrono = "0.4.35"
|
|
sea-orm = { version = "0.12.14", features = ["sqlx-mysql", "runtime-tokio-rustls", "macros", "debug-print"] }
|
|
axum = "0.7.4"
|
|
axum-extra = "0.9.2"
|
|
thiserror = "1.0.57"
|
|
ulid = "1.1.2"
|
|
serde_json = "1.0.114"
|
|
http = "1.1.0"
|
|
http-body = "1.0.0"
|
|
http-body-util = "0.1.0"
|
|
moka = { version = "0.12", features = ["future"] }
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros" ] }
|
|
futures-util = "0.3" |