Files
cli/vendor/jsonptr/Cargo.toml

101 lines
1.9 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"
rust-version = "1.79.0"
name = "jsonptr"
version = "0.7.1"
authors = [
"chance dinkins",
"André Sá de Mello <codasm@pm.me>",
"Oliver Wangler <oliver@wngr.de>",
]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Data structures and logic for resolving, assigning, and deleting by JSON Pointers (RFC 6901)"
homepage = "https://github.com/chanced/jsonptr"
documentation = "https://docs.rs/jsonptr"
readme = "README.md"
keywords = [
"json-pointer",
"rfc-6901",
"6901",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/chanced/jsonptr"
[lib]
name = "jsonptr"
path = "src/lib.rs"
[dependencies.miette]
version = "7.4.0"
features = ["fancy"]
optional = true
[dependencies.serde]
version = "1.0.203"
features = ["alloc"]
optional = true
[dependencies.serde_json]
version = "1.0.119"
features = ["alloc"]
optional = true
[dependencies.toml]
version = "0.8"
optional = true
[dev-dependencies.quickcheck]
version = "1.0.3"
[dev-dependencies.quickcheck_macros]
version = "1.0.0"
[features]
assign = []
default = [
"std",
"serde",
"json",
"resolve",
"assign",
"delete",
]
delete = ["resolve"]
json = [
"dep:serde_json",
"serde",
]
miette = [
"dep:miette",
"std",
]
resolve = []
std = [
"serde/std",
"serde_json?/std",
]
toml = [
"dep:toml",
"serde",
"std",
]
[target."cfg(any())".dependencies.syn]
version = "1.0.109"
optional = true