-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Cargo.toml
43 lines (40 loc) · 1.11 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 = "kubernix"
version = "0.2.0"
authors = ["Sascha Grunert <[email protected]>"]
edition = "2018"
license = "MIT"
categories = ["command-line-utilities"]
description = "Kubernetes development cluster bootstrapping with Nix packages"
documentation = "https://docs.rs/kubernix"
homepage = "https://github.com/saschagrunert/kubernix"
keywords = ["kubernetes", "nix", "nix-shell", "crio", "kube"]
readme = "README.md"
repository = "https://github.com/saschagrunert/kubernix"
[[bin]]
name = "kubernix"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.43"
base64 = "0.13.0"
clap = { git = "https://github.com/clap-rs/clap", features = ["wrap_help"] }
console = "0.14.1"
crossbeam-channel = "0.5.1"
getset = "0.1.1"
hostname = "0.3.1"
indicatif = "0.15.0"
ipnetwork = "0.18.0"
lazy_static = "1.4.0"
log = { version = "0.4.14", features = ["serde", "std"] }
nix = "0.22.1"
parking_lot = "0.11.2"
proc-mounts = "0.2.4"
rand = "0.8.4"
rayon = "1.5.1"
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.70"
serde_yaml = "0.8.20"
signal-hook = "0.3.10"
toml = "0.5.8"
[dev-dependencies]
tempfile = "3.2.0"