forked from Metaswitch/floki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 848 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
[package]
name = "floki"
description = "floki aims to provide reproducible and shareable build tooling by helping you run docker containers interactively from a declarative yaml file."
repository = "https://github.com/Metaswitch/floki"
homepage = "https://metaswitch.github.io/floki/"
readme = "README.md"
keywords = ["docker"]
categories = ["command-line-utilities"]
license = "MIT"
version = "0.7.0"
authors = ["Richard Lupton <[email protected]>",
"Max Dymond <[email protected]>"]
edition = '2018'
[dependencies]
log = "0.4"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.8"
structopt = "0.3"
uuid = { version = "0.8", features = ["v4"] }
yaml-rust = "0.4.4"
simplelog = "0.11"
nix = "0.22"
shlex = "1.1"
sha2 = "0.9.8"
anyhow = "1.0.45"
thiserror = "1.0.30"
[dev-dependencies]
tempfile = "3.2.0"