jsonptr 0.8.1

Data structures and logic for resolving, assigning, and deleting by JSON Pointers (RFC 6901)
Documentation
# 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.8.1"
authors = [
    "chance dinkins",
    "André Sá de Mello <codasm@pm.me>",
    "Oliver Wangler <oliver@wngr.de>",
]
build = false
autolib = 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"

[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",
]

[lib]
name = "jsonptr"
path = "src/lib.rs"

[dependencies.miette]
version = "7.4.0"
features = ["fancy"]
optional = true

[dependencies.serde]
version = "1.0.219"
features = ["alloc"]
optional = true
default-features = false

[dependencies.serde_json]
version = "1.0.140"
features = ["alloc"]
optional = true
default-features = false

[dependencies.toml]
version = "0.9"
optional = true

[dev-dependencies.quickcheck]
version = "1.0.3"

[dev-dependencies.quickcheck_macros]
version = "1.0.0"

[target."cfg(any())".dependencies.syn]
version = "1.0.109"
optional = true