[package]
edition = "2024"
name = "roas-overlay"
version = "0.2.1"
authors = ["Sergey Vilgelm <sergey@vilgelm.com>"]
build = false
include = [
"src",
"Cargo.toml",
"README.md",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of the OpenAPI Overlay Specification v1.0 / v1.1 — parse, validate, and apply"
homepage = "https://github.com/sv-tools/roas"
readme = "README.md"
keywords = [
"openapi",
"overlay",
"swagger",
"jsonpath",
"validation",
]
categories = [
"web-programming",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/sv-tools/roas"
[features]
clap = ["dep:clap"]
default = ["v1_0"]
v1_0 = []
v1_1 = []
[lib]
name = "roas_overlay"
path = "src/lib.rs"
[dependencies.clap]
version = "4.6.1"
features = ["derive"]
optional = true
[dependencies.enumset]
version = "1.1.13"
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.143"
[dependencies.serde_json_path]
version = "0.7.2"
[dev-dependencies.serde_yaml_ng]
version = "0.10.0"