-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add Oliver as author
- Loading branch information
Showing
1 changed file
with
14 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
[package] | ||
authors = ["chance dinkins", "André Sá de Mello <[email protected]>"] | ||
description = "Data structures and logic for resolving, assigning, and deleting by JSON Pointers (RFC 6901)" | ||
authors = [ | ||
"chance dinkins", | ||
"André Sá de Mello <[email protected]>", | ||
"Oliver Wangler <[email protected]>", | ||
] | ||
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"] } | ||
|