diff --git a/justfile b/justfile index f3b8a70..b3fcce6 100644 --- a/justfile +++ b/justfile @@ -23,7 +23,7 @@ deny: cargo-deny --all-features check docs: - just-cargo doc --frozen --no-deps --features=k8s-openapi/v1_25 + just-cargo doc --frozen --no-deps --features=k8s-openapi/latest test-build *flags: just-cargo test-build --frozen {{ flags }} @@ -32,7 +32,7 @@ test *flags: just-cargo test --frozen {{ flags }} publish *flags: - cargo publish --features=k8s-openapi/v1_25 {{ flags }} + cargo publish --features=k8s-openapi/latest {{ flags }} action-lint: just-dev lint-actions diff --git a/src/httproute.rs b/src/httproute.rs index 720b875..973367d 100644 --- a/src/httproute.rs +++ b/src/httproute.rs @@ -609,9 +609,9 @@ pub enum HttpPathModifier { /// /foo/bar | /foo/ | /xyz/ | /xyz/bar /// /foo | /foo | /xyz | /xyz /// /foo/ | /foo | /xyz | /xyz/ - /// /foo/bar | /foo | | /bar - /// /foo/ | /foo | | / - /// /foo | /foo | | / + /// /foo/bar | /foo | _empty string_ | /bar + /// /foo/ | /foo | _empty string_ | / + /// /foo | /foo | _empty string_ | / /// /foo/ | /foo | / | / /// /foo | /foo | / | / #[serde(rename_all = "camelCase")]