[package] name = "anvil" keywords = [ "web", "framework", "http", "generic", "wrapper" ] authors = ["sjcobb"] version = "0.1.1" edition = "2021" license = "MIT" repository = "https://github.com/sjcobb2022/anvil" homepage = "https://github.com/sjcobb2022/anvil" description = """ An adaptable, configurable, and generic web framework for Rust. """ # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] axum = [] actix = [] [dependencies] axum = { version = "0.7", features = ["macros"] } actix-web = { version = "4.0" } tokio = { version = "1.40.0", features = [ "rt-multi-thread" ]} serde = { version = "1.0.210", features = ["derive"] } http = "1.1.0" http-body-util = "0.1.2" bytes = "1.7.2" http-body = "1.0.1" futures-util = "0.3.31" sync_wrapper = { version = "1.0.1", features = [ "futures"] } pin-project-lite = "0.2.14" [dev-dependencies] http-body-util = "0.1.2" tower = "0.5.1"