[package]
edition = "2021"
name = "rovo"
version = "0.3.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A drop-in replacement for axum::Router with effortless OpenAPI documentation"
readme = "README.md"
keywords = [
"axum",
"openapi",
"swagger",
"api",
"documentation",
]
categories = [
"web-programming",
"web-programming::http-server",
]
license = "MIT"
repository = "https://github.com/Arthurdw/rovo"
[features]
default = []
redoc = ["aide/redoc"]
scalar = ["aide/scalar"]
swagger = ["aide/swagger"]
[lib]
name = "rovo"
path = "src/lib.rs"
[[example]]
name = "todo_api"
path = "examples/todo_api.rs"
required-features = ["swagger"]
[[test]]
name = "basic_docs"
path = "tests/basic_docs.rs"
[[test]]
name = "compile_fail"
path = "tests/compile_fail.rs"
[[test]]
name = "comprehensive"
path = "tests/comprehensive.rs"
[[test]]
name = "parser_edge_cases"
path = "tests/parser_edge_cases.rs"
[[test]]
name = "path_parameter_primitives"
path = "tests/path_parameter_primitives.rs"
[[test]]
name = "router_edge_cases"
path = "tests/router_edge_cases.rs"
[[test]]
name = "router_functionality"
path = "tests/router_functionality.rs"
[[test]]
name = "rovo_ignore"
path = "tests/rovo_ignore.rs"
[[test]]
name = "rustdoc_format"
path = "tests/rustdoc_format.rs"
[[test]]
name = "spec_population"
path = "tests/spec_population.rs"
[[test]]
name = "validation"
path = "tests/validation.rs"
[[test]]
name = "with_example"
path = "tests/with_example.rs"
[dependencies.aide]
version = "0.15"
features = [
"axum",
"axum-json",
"axum-query",
]
[dependencies.axum]
version = "0.8.7"
[dependencies.rovo-macros]
version = "0.3.1"
[dependencies.schemars]
version = "0.9"
features = ["uuid1"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dev-dependencies.axum]
version = "0.8.7"
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.tower]
version = "0.5"
[dev-dependencies.tracing]
version = "0.1"
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.trybuild]
version = "1.0"
[dev-dependencies.uuid]
version = "1"
features = [
"serde",
"v4",
]
[dev-dependencies.version_check]
version = "0.9"