-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
32 lines (30 loc) · 1.24 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
[package]
name = "groundcontrol"
version = "1.0.0"
publish = false
authors = ["Michael Alyn Miller <[email protected]>"]
edition = "2021"
rust-version = "1.60"
exclude = [ ".dockerignore", ".editorconfig", ".gitattributes", ".github", ".gitignore" ]
[dependencies]
clap = { version = "4.1.8", features = ["derive"] }
color-eyre = { version = "0.6.2", default-features = false }
command-group = { version = "2.0.0", features = ["with-tokio"] }
console = { version = "0.15.2", default-features = false, features = ["ansi-parsing"] }
nix = { version = "0.26.1", default-features = false, features = ["signal"] }
once_cell = "1.16.0"
regex = "1.6.0"
serde = { version = "1.0.126", features = ["derive"] }
thiserror = "1.0"
time = { version = "0.3.17", features = ["formatting", "macros"] }
tokio = { version = "1.26.0", features = ["fs", "macros", "process", "rt-multi-thread", "signal", "sync"] }
toml = "0.5"
tracing = "0.1"
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt", "std"] }
users = "0.11.0"
[dev-dependencies]
indoc = "1.0.7"
pretty_assertions = "1.3.0"
tempfile = "3.4.0"
test-log = { version = "0.2", default-features = false, features = ["trace"] }
tokio = { version = "1.0", features = ["time"] }