forked from discord/rust-etcd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (37 loc) · 900 Bytes
/
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 = ["Jimmy Cuadra <jimmy@jimmycuadra.com>"]
description = "A client library for CoreOS's etcd."
documentation = "https://docs.rs/etcd"
edition = "2018"
homepage = "https://github.com/jimmycuadra/rust-etcd"
keywords = ["etcd", "coreos", "database"]
license = "MIT"
name = "etcd"
readme = "README.md"
repository = "https://github.com/jimmycuadra/rust-etcd"
version = "0.10.0"
[lib]
test = false
[dependencies]
futures = "0.3"
hyper = "0.13"
http = "0.2"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
url = "2.1"
base64 = "0.11"
log = "0.4"
tokio = { version = "0.2", features = ["rt-core", "test-util", "macros", "time"] }
[dependencies.hyper-tls]
optional = true
version = "0.4"
[dependencies.tokio-tls]
optional = true
version = "0.3"
[dependencies.native-tls]
optional = true
version = "0.2"
[features]
default = ["tls"]
tls = ["hyper-tls", "tokio-tls", "native-tls"]