summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 8fd2e4113df4e4d05b07a900e3bf6ae32f4d5300 (plain)
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
[package]
name          = "serde-select"
version       = "0.1.0-alpha.1"
authors       = ["Matthias Beyer <mail@beyermatthias.de>"]
edition       = "2018"
description   = "Query serde de/serializable objects"
readme        = "README.md"
keywords      = ["serde", "extension"]
license       = "MPL-2.0"
repository    = "https://github.com/matthiasbeyer/serde-select"

[dependencies]
thiserror      = "1"
serde          = "1"
regex          = "1.0"
log            = "0.4"
lazy_static    = "1.0"
is-match       = "0.1"

[dependencies.serde_json]
version  = "1"
optional = true

[dependencies.toml]
version  = "0.5"
optional = true

[dev-dependencies]
toml         = "0.5"
serde_json   = "1"
quickcheck   = "0.8"
serde_derive = "1"
env_logger   = "0.7"

[features]
default = ["backend_toml", "backend_serde_json"]

backend_toml = ["toml"]
backend_serde_json = ["serde_json"]