Files
cli/vendor/json-patch/Cargo.toml

100 lines
1.8 KiB
TOML
Raw Normal View History

# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2021"
name = "json-patch"
version = "4.1.0"
authors = ["Ivan Dubrov <dubrov.ivan@gmail.com>"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "RFC 6902, JavaScript Object Notation (JSON) Patch"
readme = "README.md"
keywords = [
"json",
"json-patch",
]
categories = []
license = "MIT/Apache-2.0"
repository = "https://github.com/idubrov/json-patch"
[lib]
name = "json_patch"
path = "src/lib.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "schemars"
path = "tests/schemars.rs"
[[test]]
name = "suite"
path = "tests/suite.rs"
[[test]]
name = "utoipa"
path = "tests/utoipa.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"
[dependencies.jsonptr]
version = "0.7.1"
[dependencies.schemars]
version = "1.0.4"
optional = true
[dependencies.serde]
version = "1.0.159"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.95"
[dependencies.thiserror]
version = "1.0.40"
[dependencies.utoipa]
version = "5"
optional = true
[dev-dependencies.expectorate]
version = "1.0"
[dev-dependencies.rand]
version = "0.8.5"
[dev-dependencies.schemars]
version = "1.0.4"
[dev-dependencies.serde_json]
version = "1.0.95"
features = ["preserve_order"]
[dev-dependencies.serde_yaml]
version = "0.9.19"
[dev-dependencies.utoipa]
version = "5"
features = ["debug"]
[features]
default = ["diff"]
diff = []