aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 1cdf0c1e935624c1d0e5ef932876914f8f0e07f7 (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
[package]
name = "libquassel"
version = "0.1.0"
authors = ["Max Audron <audron@cocaine.farm>"]
edition = "2018"
autobins = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
log = "0.4"
byteorder = "1.3.2"
failure = "0.1"

bytes = { version = "0.5", optional = true }
flate2 = { version = "1.0", features = ["tokio"], optional = true }
tokio = { version = "0.2", features = ["full"], optional = true }
tokio-util = { version = "0.2", features = ["codec"], optional = true }
tokio-test = { version = "0.2", optional = true }
futures-util = { version = "0.3", features = ["std"], optional = true }
futures = { version = "0.3", optional = true }

[features]
framing = ["tokio", "tokio-util", "flate2", "bytes"]
client = ["tokio", "tokio-util", "futures", "futures-util", "framing"]
test = ["tokio-test", "futures"]

default = []

[[bin]]
name = "quassel-client"
required-features = ["client"]