|
1 | 1 | [package] |
2 | | -name = "jsonptr" |
3 | | -version = "0.3.4" |
4 | | -edition = "2021" |
5 | | -description = "Data structures and logic for resolving, assigning, and deleting by JSON Pointers (RFC 6901)" |
| 2 | +authors = ["chance dinkins"] |
| 3 | +description = "Data structures and logic for resolving, assigning, and deleting by JSON Pointers (RFC 6901)" |
6 | 4 | documentation = "https://docs.rs/jsonptr" |
7 | | -keywords = ["json-pointer", "rfc-6901", "6901"] |
8 | | -license = "MIT OR Apache-2.0" |
9 | | -repository = "https://github.com/chanced/jsonptr" |
10 | | -homepage = "https://github.com/chanced/jsonptr" |
11 | | -authors = ["chance dinkins"] |
12 | | - |
| 5 | +edition = "2021" |
| 6 | +homepage = "https://github.com/chanced/jsonptr" |
| 7 | +keywords = ["json-pointer", "rfc-6901", "6901"] |
| 8 | +license = "MIT OR Apache-2.0" |
| 9 | +name = "jsonptr" |
| 10 | +repository = "https://github.com/chanced/jsonptr" |
| 11 | +version = "0.3.4" |
13 | 12 |
|
14 | 13 | [dependencies] |
15 | | -serde_json = { version = "1.0", default-features = false, features = ["alloc"] } |
16 | | -serde = { version = "1.0", default-features = false, features = ["alloc"] } |
17 | | -url = { version = "2", optional = true } |
18 | | -uniresid = { version = "0.1.4", optional = true } |
19 | 14 | fluent-uri = { version = "0.1.4", optional = true, default-features = false } |
| 15 | +serde = { version = "1.0", default-features = false, features = ["alloc"] } |
| 16 | +serde_json = { version = "1.0", default-features = false, features = ["alloc"] } |
| 17 | +uniresid = { version = "0.1.4", optional = true } |
| 18 | +url = { version = "2", optional = true } |
20 | 19 |
|
21 | 20 | [features] |
22 | 21 | default = [] |
23 | | -std = ["serde/std", "serde_json/std", "fluent-uri?/std"] |
| 22 | +std = ["serde/std", "serde_json/std", "fluent-uri?/std"] |
0 commit comments