Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 14 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
[package]
authors = ["chance dinkins", "André Sá de Mello <codasm@pm.me>"]
description = "Data structures and logic for resolving, assigning, and deleting by JSON Pointers (RFC 6901)"
authors = [
"chance dinkins",
"André Sá de Mello <codasm@pm.me>",
"Oliver Wangler <oliver@wngr.de>",
]
description = "Data structures and logic for resolving, assigning, and deleting by JSON Pointers (RFC 6901)"
documentation = "https://docs.rs/jsonptr"
edition = "2021"
homepage = "https://github.com/chanced/jsonptr"
keywords = ["json-pointer", "rfc-6901", "6901"]
license = "MIT OR Apache-2.0"
name = "jsonptr"
repository = "https://github.com/chanced/jsonptr"
rust-version = "1.79.0"
version = "0.6.3"
edition = "2021"
homepage = "https://github.com/chanced/jsonptr"
keywords = ["json-pointer", "rfc-6901", "6901"]
license = "MIT OR Apache-2.0"
name = "jsonptr"
repository = "https://github.com/chanced/jsonptr"
rust-version = "1.79.0"
version = "0.6.3"

[dependencies]
serde = { version = "1.0.203", optional = true, features = ["alloc"] }
Expand Down
Loading