21 lines
658 B
TOML
21 lines
658 B
TOML
[package]
|
|
name = "calories_server"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[dependencies]
|
|
axum = { version = "0.7.5", features = ["macros"] }
|
|
chrono = "0.4.38"
|
|
image = "0.25.2"
|
|
mysql = "25.0.1"
|
|
mysql_common = { version = "0.32.4", features = ["frunk"] }
|
|
plotters = "0.3.6"
|
|
plotters-canvas = "0.3.0"
|
|
serde = "1.0.208"
|
|
struct-field-names-as-array = "0.3.0"
|
|
time = "0.3.36"
|
|
tokio = { version = "1.39.2", features = ["macros", "rt-multi-thread"] }
|
|
tower-http = { version = "0.5.2", features = ["fs"] }
|
|
shared = { path = "../shared", features = ["sql"] }
|