[package] name = "darpi" version = "0.1.5" authors = ["Petar Dambovaliev "] edition = "2018" description = "A web framework with type safety and speed in mind" license = "MIT OR Apache-2.0" repository = "https://github.com/rust-darpi/darpi.git" keywords = ["darpi", "http", "web", "framework", "api"] categories = ["network-programming", "asynchronous", "web-programming::http-server"] [workspace] members = [ "darpi-code-gen", "darpi-web", "darpi-route", "darpi-middleware", "darpi-headers", "darpi-graphql" ] [profile.release] panic = "unwind" lto = true opt-level = 3 codegen-units = 1 [dependencies] darpi-web = "0.1.0-beta.1" darpi-code-gen = "0.1.1-beta.1" darpi-route = "0.1.0-beta" hyper = {version = "0.14.4", features = ["server", "http1", "http2", "stream", "tcp"]} futures = "0.3.8" shaku = {version = "0.5.0", features = ["thread_safe"]} http = "0.2.1" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.60" async-trait = "0.1.42" chrono = "0.4" rayon = "1.5.0" log = "0.4.13" tokio = {version = "1.2.0", features = ["full"]} [dev-dependencies] darpi-middleware = {git = "https://github.com/darpi-rs/darpi.git", branch = "master"} darpi-headers = {git = "https://github.com/darpi-rs/darpi.git", branch = "master"} darpi-graphql = {git = "https://github.com/darpi-rs/darpi.git", branch = "master"} jsonwebtoken = "=7.2" futures-util = "0.3.8" derive_more = "0.99.11" env_logger = "0.8.2" async-graphql = "2.5.4" slab = "0.4.2" tokio-tungstenite = "0.14.0"