2024-04-14 00:55:00 +02:00
|
|
|
[package]
|
|
|
|
name = "greg-ng"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-08-04 03:19:55 +02:00
|
|
|
license = "MIT"
|
|
|
|
authors = ["oysteikt@pvv.ntnu.no"]
|
|
|
|
readme = "README.md"
|
2024-04-14 00:55:00 +02:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-04-16 18:21:26 +02:00
|
|
|
aide = { version = "0.13.4", features = [
|
|
|
|
"axum",
|
|
|
|
"axum-extra",
|
|
|
|
"axum-extra-query",
|
|
|
|
"axum-extra-form",
|
|
|
|
"axum-ws",
|
|
|
|
"macros",
|
|
|
|
"scalar",
|
|
|
|
] }
|
2024-04-14 00:55:00 +02:00
|
|
|
anyhow = "1.0.82"
|
2024-04-16 18:21:26 +02:00
|
|
|
axum = { version = "0.6.20", features = ["macros", "ws"] }
|
|
|
|
axum-jsonschema = { version = "0.8.0", features = ["aide"] }
|
|
|
|
axum-macros = "0.4.1"
|
2024-04-14 00:55:00 +02:00
|
|
|
clap = { version = "4.4.1", features = ["derive"] }
|
2024-10-20 22:05:56 +02:00
|
|
|
clap-verbosity-flag = "2.2.2"
|
2024-04-14 00:55:00 +02:00
|
|
|
env_logger = "0.10.0"
|
|
|
|
log = "0.4.20"
|
2024-04-18 22:02:39 +02:00
|
|
|
mpvipc-async = { git = "https://git.pvv.ntnu.no/oysteikt/mpvipc-async.git", rev = "v0.1.0" }
|
2024-10-20 22:05:56 +02:00
|
|
|
sd-notify = "0.4.3"
|
2024-04-16 18:21:26 +02:00
|
|
|
schemars = "0.8.16"
|
2024-04-14 00:55:00 +02:00
|
|
|
serde = { version = "1.0.188", features = ["derive"] }
|
|
|
|
serde_json = "1.0.105"
|
2024-10-20 22:05:56 +02:00
|
|
|
systemd-journal-logger = "2.2.0"
|
2024-08-04 18:58:17 +02:00
|
|
|
tempfile = "3.11.0"
|
2024-04-16 18:21:26 +02:00
|
|
|
serde_urlencoded = "0.7.1"
|
2024-04-14 00:55:00 +02:00
|
|
|
tokio = { version = "1.32.0", features = ["full"] }
|
|
|
|
tower = { version = "0.4.13", features = ["full"] }
|
|
|
|
tower-http = { version = "0.4.3", features = ["full"] }
|
2024-08-04 03:19:42 +02:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
strip = true
|
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|