[package] name = "rocket-no-content" version = "0.1.4" edition = "2021" license = "MIT" authors = ["AniMi Labs"] description = "Provides a 204 No Content responder for Rocket. Includes optional schema definition." # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] schema = ["rocket_okapi", "okapi"] default = ["schema"] [dependencies] rocket = { version = "0.5.0-rc.2", default-features = false } okapi = { version = "0.7.0", optional = true, default-features = false } rocket_okapi = { version = "0.8.0", optional = true, default-features = false }