summaryrefslogtreecommitdiffstats
path: root/librepology/Cargo.toml
blob: 5f7bb52c236c983d8f40ba91e3e365dc859c2286 (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
[package]
name = "librepology"
version = "0.1.0"
authors = ["Matthias Beyer <matthias.beyer@atos.net>"]
edition = "2018"

[dependencies]
serde = "1"
serde_derive = "1"
serde_json = "1"
url = "1.7"
url_serde = "0.2"
futures = "*"
failure = "0.1"
log = "0.4"
derive_more = "0.14"
curl = "0.4"

filters    = { version = "0.3", optional = true }
derive-new = { version = "0.5", optional = true }

[features]
# By default, we include the filters functionality
default = [ "packagefilters" ]

packagefilters = ["filters", "derive-new"]