-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (47 loc) · 1.24 KB
/
Cargo.toml
File metadata and controls
51 lines (47 loc) · 1.24 KB
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
44
45
46
47
48
49
50
51
[package]
name = "basalt-cli"
version = "1.0.0"
edition = "2021"
description = "CLI for managing Basalt competitions and configurations"
authors = ["Jack Branch", "funnyboy-roks <funnyboyroks@gmail.com>"]
repository = "https://github.com/basalt-rs/basalt-cli"
license = "GPL-3.0-only"
keywords = ["basalt", "cli", "competition", "configuration", "pdf"]
categories = [
"command-line-utilities",
"virtualization",
"development-tools::build-utils",
"config",
]
exclude = [".github"]
[package.metadata.wix]
upgrade-guid = "33BD64EA-20DC-4A1B-AAFC-F7B46D04E651"
path-guid = "D716F485-26F4-43AB-ABC3-13BFA0263C36"
license = false
eula = false
[[bin]]
name = "basalt"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.95"
clap = { version = "4.5.27", features = ["derive"] }
bedrock = { package = "basalt-bedrock", version = "1.0.0", features = [
"tokio",
] }
tokio = { version = "1.47.1", features = ["full"] }
lazy_static = "1.5.0"
tera = "1.20.0"
bollard = "0.18.1"
tokio-tar = "0.3.1"
futures = "0.3.31"
local-ip-address = "0.6.5"
ansi_term = "0.12.1"
tokio-process-stream = "0.4.1"
colored = "3.0.0"
tokio-stream = "0.1.17"
tempdir = "0.3.7"
regex = "1.11.3"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"