forked from coreos/afterburn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (40 loc) · 915 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
44
45
[package]
name = "coreos-metadata"
version = "1.0.3"
authors = ["Stephen Demos <[email protected]>"]
[[bin]]
name = "coreos-metadata"
path = "src/bin/coreos-metadata.rs"
[dependencies]
clap = "2.26"
users = "0.6"
slog-term = "2.2"
slog-async = "2.1"
slog-scope = "4.0"
mime = "0.3"
serde = "1.0"
serde_derive = "1.0"
serde-xml-rs = "0.2"
serde_json = "1.0"
openssl = "0.9.17"
base64 = "0.6"
byteorder = "1.1"
pnet = "0.20"
reqwest = "0.7"
hyper = "0.11"
error-chain = { version = "0.11", default-features = false }
openssh-keys = "0.2"
update-ssh-keys = { git = "https://github.com/coreos/update-ssh-keys", tag = "v0.1.1" }
ipnetwork = "0.12"
clippy = { version = "*", optional = true }
hostname = "0.1"
tempdir = "0.3"
nix = "0.9"
[dependencies.slog]
version = "2.0"
features = ["max_level_trace", "release_max_level_info"]
[dev-dependencies]
mockito = "0.9"
[features]
default = []
lints = ["clippy"]