-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (36 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
40 lines (36 loc) · 1.26 KB
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
[package]
name = "intecture-api"
version = "0.2.1"
authors = [ "Peter Hayes <peter.hayes@betweenlines.co.uk>" ]
license = "MPL-2.0"
description = "API component for Intecture infrastructure. Intecture is the developer friendly, multi-lingual configuration management tool."
keywords = ["intecture", "api"]
homepage = "https://intecture.io"
repository = "https://github.com/intecture/api"
build = "build.rs"
[features]
default = ["remote-run"]
# Run API endpoints against the local machine
local-run = []
# Run API endpoints against a remote agent
remote-run = ["czmq"]
[dev-dependencies]
tempdir = "0.3"
[dependencies]
lazy_static = "0.2"
libc = "0.2"
mustache = "0.8"
regex = "0.1"
rustc-serialize = "0.3"
serde = "0.8"
serde_json = "0.8"
tempfile = "2.1"
zdaemon = { git = "https://github.com/betweenlines/zdaemon.git", branch = "dev" }
# zfilexfer = { git = "https://github.com/betweenlines/zfilexfer.git", tag = "0.0.1" }
zfilexfer = { git = "https://github.com/betweenlines/zfilexfer.git", branch = "dev" }
# Feature `remote-run`
# czmq = { git = "https://github.com/petehayes102/rust-czmq.git", tag = "0.0.5", optional = true }
czmq = { git = "https://github.com/petehayes102/rust-czmq.git", branch = "dev", optional = true }
[lib]
name = "inapi"
crate_type = ["rlib", "dylib"]