[package]
edition = "2021"
name = "openapi-schema-to-json-schema"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Convert OpenAPI 3.0 schema objects to JSON Schema draft-04"
readme = "README.md"
keywords = [
"openapi",
"json-schema",
"swagger",
"convert",
"draft-04",
]
categories = [
"data-structures",
"parsing",
]
license = "MIT"
repository = "https://github.com/hey-jj/openapi-schema-to-json-schema"
[lib]
name = "openapi_schema_to_json_schema"
path = "src/lib.rs"
[[test]]
name = "clone_schema"
path = "tests/clone_schema.rs"
[[test]]
name = "combination_keywords"
path = "tests/combination_keywords.rs"
[[test]]
name = "combiners"
path = "tests/combiners.rs"
[[test]]
name = "complex_schemas"
path = "tests/complex_schemas.rs"
[[test]]
name = "converters"
path = "tests/converters.rs"
[[test]]
name = "definition_keywords"
path = "tests/definition_keywords.rs"
[[test]]
name = "invalid_types"
path = "tests/invalid_types.rs"
[[test]]
name = "items"
path = "tests/items.rs"
[[test]]
name = "nullable"
path = "tests/nullable.rs"
[[test]]
name = "numeric_types"
path = "tests/numeric_types.rs"
[[test]]
name = "parameter"
path = "tests/parameter.rs"
[[test]]
name = "pattern_properties"
path = "tests/pattern_properties.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[[test]]
name = "readonly_writeonly"
path = "tests/readonly_writeonly.rs"
[[test]]
name = "string_types"
path = "tests/string_types.rs"
[[test]]
name = "transform"
path = "tests/transform.rs"
[[test]]
name = "unsupported_properties"
path = "tests/unsupported_properties.rs"
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]