[package] name = "alex-db-server" version = "0.1.0" edition = "2021" authors = ["Michal Piotrowski "] categories = ["database-implementations"] description = "AlexDB server." homepage = "https://github.com/idiomatic-rust-com/alex-db" keywords = ["database", "server"] license = "MIT" readme = "README.md" repository = "https://github.com/idiomatic-rust-com/alex-db" rust-version = "1.64" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] alex-db-lib = "0.1" axum = { features = ["headers"], version = "0.6" } axum-macros = "0.3" chrono = { version = "0.4", features = ["serde"] } clap = { version = "4.1", features = ["derive", "env"] } fake = "2.5" http = "0.2" hyper = { version = "0.14", features = ["full"] } mime = "0.3" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tokio = { version = "1.25", features = ["full"] } tower = { version = "0.4", features = ["timeout", "util"] } tower-http = { version = "0.3", features = ["add-extension", "trace"] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } utoipa = { version = "3.0", features = ["axum_extras", "chrono"] } utoipa-swagger-ui = { version = "3.0", features = ["axum"] } uuid = { version = "1.3", features = ["serde", "v4"] } validator = { version = "0.16", features = ["derive"] }