-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (40 loc) · 961 Bytes
/
Cargo.toml
File metadata and controls
49 lines (40 loc) · 961 Bytes
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
46
47
48
49
[package]
name = "rust-puppetdb-cli"
version = "0.1.3"
description = "PuppetDB CLI tool in rust."
readme = "README.md"
documentation = "http://ajroetker.github.io/rust-puppetdb-cli/index.html"
repository = "https://github.com/ajroetker/rust-puppetdb-cli"
license-file = "LICENSE"
keywords = ["puppet", "puppetdb", "puppetdb-cli"]
authors = ["Andrew Roetker <andrew.roetker@puppetlabs.com>"]
[lib]
name = "puppetdb"
path = "src/lib.rs"
[[bin]]
name = "puppet-db"
path = "src/db.rs"
[[bin]]
name = "puppet-query"
path = "src/query.rs"
[dependencies]
beautician = "0.1"
hyper = "0.8"
docopt = "0.6"
rustc-serialize = "0.3"
url = "0.5"
[dependencies.openssl]
version = "0.7"
features = ["tlsv1_2"]
[dependencies.multipart]
version = "0.6"
default-features = false
features = ["hyper", "client"]
[dependencies.puppet_access]
optional = true
path = "puppet_access"
[features]
default = []
puppet-access = ["puppet_access"]
[dev-dependencies]
tempdir = "0.3"