-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
42 lines (41 loc) · 1.19 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
[package]
name = "katsu"
version = "0.9.0"
edition = "2021"
authors = [
"Fyra Labs",
"Pornpipat Popum <[email protected]>",
"Madomado <[email protected]>",
"Lleyton Gray <[email protected]>",
]
description = "The vicious image builder"
license = "MIT"
repository = "https://github.com/FyraLabs/katsu"
documentation = "https://developer.fyralabs.com/katsu"
categories = ["system", "utilities"]
keywords = ["build", "image", "os", "linux", "chroot", "container"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sudo = "0.6.0"
tracing = "0.1.37"
color-eyre = "0.6.2"
tracing-subscriber = { version = "0.3.16", features = [
"env-filter",
"tracing-log",
] }
serde_derive = "1"
serde = "1.0.152"
tracing-error = "0.2"
glob = "0.3"
cmd_lib = "1.3.0"
serde_yaml = "0.9"
dotenvy = "0.15"
tera = "1"
merge-struct = "0.1.0"
clap = { version = "4.4", features = ["derive", "env"] }
nix = { version = "0.27", features = ["mount", "hostname", "dir"] }
uuid = { version = "1.4.1", features = ["v4", "serde"] }
loopdev-fyra = { version = "0.5.0" }
bytesize = { version = "1.3.0", features = ["serde"] }
indexmap = "2.2.6"
tiffin = "0.3.2"