[package]
name = "devui"
version = "0.0.3"
edition = "2021"
description = "A comprehensive development tools UI library"
authors = ["Omprakash Sridharan <omprakashsridharan@gmail.com>"]
license = "MIT"
repository = "https://github.com/omprakashsridharan/devui"
homepage = "https://github.com/omprakashsridharan/devui"
documentation = "https://github.com/omprakashsridharan/devui/blob/main/README.md"
keywords = ["admin", "dev-tools", "web-ui", "axum", "react"]
categories = ["development-tools", "web-programming", "database"]
readme = "README.md"
include = [
"Cargo.toml",
"LICENSE",
"README.md",
"src/**",
"frontend/dist/**"
]
[dependencies]
axum = "0.8.6"
tokio = { version = "1.0", features = ["full"] }
http = "1.0"
tower-http = { version = "0.6.6", features = ["trace", "fs", "cors"] }
tracing = "0.1"
tracing-subscriber = "0.3"
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "postgres", "chrono", "uuid"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
async-trait = "0.1"
thiserror = "2.0.17"
derive_builder = "0.20.2"
hex = "0.4"
rdkafka = { version = "0.38", features = ["cmake-build"] }
tokio-stream = "0.1.17"
futures-util = "0.3.31"
async-stream = "0.3.6"
rust-embed = { version = "8.0", features = ["axum"] }
bytes = "1.0"
[dev-dependencies]
cargo-watch = "8.5"