[package] name = "revolt-result" version = "0.13.7" edition = "2021" license = "MIT" authors = ["Paul Makles "] description = "Revolt Backend: Result and Error types" repository = "https://github.com/stoatchat/stoatchat" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] serde = ["dep:serde"] schemas = ["dep:schemars"] utoipa = ["dep:utoipa"] rocket = ["dep:rocket", "dep:serde_json"] axum = ["dep:axum", "dep:serde_json"] okapi = ["dep:revolt_rocket_okapi", "dep:revolt_okapi", "schemas"] sentry = ["dep:sentry"] default = ["serde", "sentry"] [dependencies] # Serialisation serde_json = { workspace = true, optional = true } serde = { workspace = true, optional = true } # Spec Generation schemars = { workspace = true, optional = true } utoipa = { workspace = true, optional = true } # Rocket rocket = { workspace = true, optional = true } revolt_rocket_okapi = { workspace = true, optional = true } revolt_okapi = { workspace = true, optional = true } # utilities log = { workspace = true } # Axum axum = { workspace = true, optional = true } sentry = { workspace = true, optional = true }