[package] name = "qrock" version = "0.2.2" edition = "2021" license = "0BSD" # https://crates.io/category_slugs categories = [ "web-programming::http-server" ] keywords = [ "http", "helpers", "rocket", "webserver" ] repository = "https://repos.qrnch.tech/pub/qrock" description = "Helpers for Rocket HTTP server applications." exclude = [ ".fossil-settings", ".efiles", ".fslckout", "examples", "static", "www", "build.rs", "bacon.toml", "rustfmt.toml" ] # https://doc.rust-lang.org/cargo/reference/manifest.html#the-badges-section [badges] maintenance = { status = "experimental" } [build-dependencies] flate2 = { version = "1.0.35" } [dependencies] base64 = { version = "0.22.1" } eui48 = { version = "1.1.0", default-features = false } flate2 = { version = "1.0.35" } hashbrown = { version = "0.15.1" } hex = { version = "0.4.3" } orphanage = { version = "0.1.3" } rocket = { version = "0.5.1", features = ["json"] } sha2 = { version = "0.10.8" } validator = { version = "0.19.0" } [lints.clippy] all = { level = "warn", priority = -1 } pedantic = { level = "warn", priority = -1 } nursery = { level = "warn", priority = -1 } cargo = { level = "warn", priority = -1 } cargo_common_metadata = "allow" multiple_crate_versions = "allow"