-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
43 lines (38 loc) · 1.22 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
40
41
42
43
[package]
authors = ["Samuele Maci <macisamuele@gmail.com>"]
categories = ["data-structures", "development-tools", "encoding", "parsing"]
description = "Rust interface (aka trait) to deal with objects as they are JSON objects"
repository = "https://github.com/macisamuele/json-trait-rs"
edition = "2018"
keywords = ["json"]
license = "MIT"
name = "json-trait-rs"
readme = "README.md"
publish = true
version = "0.11.0"
[badges]
codecov = { repository = "macisamuele/json-trait-rs", branch = "master", service = "github" }
is-it-maintained-issue-resolution = { repository = "macisamuele/json-trait-rs" }
is-it-maintained-open-issues = { repository = "macisamuele/json-trait-rs" }
maintenance = { status = "actively-developed" }
[package.metadata.docs.rs]
all-features = true
[features]
default = []
trait_json = ["json"]
trait_serde_json = ["serde_json"]
trait_serde_yaml = ["serde_yaml"]
trait_pyo3 = ["pyo3"]
[dev-dependencies]
lazy_static = "1"
serde_json = "1"
test-case = "1"
[dependencies]
thiserror = "1"
join-lazy-fmt = "0"
json = { version = "0", optional = true }
pyo3 = { version = "0", optional = true }
serde_json = { version = "1", optional = true }
serde_yaml = { version = "0", optional = true }
strum = "0"
strum_macros = "0"