[package] name = "urus" version = "0.1.0" edition = "2021" rust-version = "1.95" description = "Cowboy/bandit-style HTTP library for the smarm actor runtime" [dependencies] smarm = { path = "../smarm" } httparse = "1.9" libc = "0.2" [features] smarm-trace = ["smarm/smarm-trace"] [dev-dependencies] serde = { version = "1", features = ["derive"] } serde_json = "1" [profile.dev] panic = "unwind" [profile.release] panic = "unwind" lto = "thin" codegen-units = 1 [[example]] name = "crud" path = "examples/crud.rs"