-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (53 loc) · 1.45 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "dvs"
version = "0.1.0-dev"
edition = "2021"
authors = ["harmless-tech"]
description = "Create and manage virtual systems using docker"
readme = "README.md"
license = "MIT"
repository = "https://github.com/harmless-tech/dvs"
keywords = ["binary"]
#rust-version = "1.70"
include = [
"src/",
"Cargo.lock",
"Cargo.toml",
"LICENSE",
"README.md"
]
[dependencies]
clap = { version = "4.4.3", features = ["derive", "env"] }
console = "0.15.7"
dialoguer = "0.10.4"
directories = "5.0.1"
indicatif = "0.17.6"
mimalloc = { version = "0.1.39", optional = true }
phf = { version = "0.11.2", features = ["macros"] }
serde = { version = "1.0.188", features = ["derive"] }
thiserror = "1.0.48"
toml = { version = "0.8.0", features = ["display", "parse"] }
[features]
default = []
mimalloc = ["dep:mimalloc"]
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
panic = "abort"
[profile.small]
inherits = "release"
opt-level = "s"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ target }.tar.gz"
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "tgz"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-url = "{ repo }/releases/download/v{ version }/{ target }.zip"
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "zip"
[package.metadata.binstall.overrides.aarch64-pc-windows-msvc]
pkg-url = "{ repo }/releases/download/v{ version }/{ target }.zip"
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "zip"