-
Notifications
You must be signed in to change notification settings - Fork 21
/
Cargo.toml
43 lines (39 loc) · 1.14 KB
/
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
[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 = "2.1.0"
authors = ["Richard Lupton <[email protected]>",
"Max Dymond <[email protected]>"]
edition = '2018'
rust-version = '1.57'
[dependencies]
atty = "0.2"
log = "0.4"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
structopt = "0.3"
uuid = { version = "1.11", features = ["v4"] }
yaml-rust2 = "0.9.0"
simplelog = "0.12"
nix = { version = "0.29", default-features = false, features = ["user"] }
shlex = "1.3"
sha2 = "0.10.8"
anyhow = "1.0.93"
thiserror = "2.0.0"
tera = "1"
serde_json = "1.0.132"
toml = "0.8.19"
shell-words = "1.1.0"
[dev-dependencies]
tempfile = "3.14.0"
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
lto = true
codegen-units = 1