-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathCargo.toml
39 lines (34 loc) · 790 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
[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.9.0"
[lib]
test = false
[dependencies]
futures = "0.1.25"
hyper = "0.12.13"
http = "0.1.13"
serde = "1.0.80"
serde_derive = "1.0.80"
serde_json = "1.0.32"
url = "1.7.1"
base64 = "0.10.0"
log = "0.4.6"
tokio = "0.1.13"
[dependencies.hyper-tls]
optional = true
version = "0.3.1"
[dependencies.native-tls]
optional = true
version = "0.2.2"
[features]
default = ["tls"]
tls = ["hyper-tls", "native-tls"]