-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
39 lines (35 loc) · 1.24 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
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"
[dependencies]
serde = { version = "1.0.203", optional = true, features = ["alloc"] }
serde_json = { version = "1.0.119", optional = true, features = ["alloc"] }
toml = { version = "0.8", optional = true }
[dev-dependencies]
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
# quickcheck-macros requires a later version than it declares
# so we use this hack to make `-Zminimal-versions` work
[target.'cfg(any())'.dependencies]
syn = { version = "1.0.109", optional = true }
[features]
assign = []
default = ["std", "serde", "json", "resolve", "assign", "delete"]
delete = ["resolve"]
json = ["dep:serde_json", "serde"]
resolve = []
std = ["serde/std", "serde_json?/std"]
toml = ["dep:toml", "serde", "std"]