-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
48 lines (42 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
44
45
46
47
48
[package]
name = "wargo"
description = "cargo's evil twin to work with projects in the twilight zone of WSL2"
version = "0.4.1"
edition = "2021"
readme = "README.md"
homepage = "https://github.com/asaaki/wargo"
repository = "https://github.com/asaaki/wargo"
categories = [
"command-line-utilities",
"development-tools",
"development-tools::build-utils",
"development-tools::cargo-plugins",
]
keywords = ["cargo", "wsl", "wsl2", "windows", "cli"]
license = "MIT OR Apache-2.0"
exclude = [".assets/*", ".cargo/*", ".github/*", "Wargo.toml"]
default-run = "wargo"
[lib]
name = "wargo_lib"
[features]
default = []
docs = []
# https://fasterthanli.me/articles/why-is-my-rust-build-so-slow
[profile.release]
opt-level = 3
codegen-units = 1
lto = true
incremental = true
strip = true
[dependencies]
anyhow = "1.0.92"
cargo_metadata = "0.18.1"
cprint = { version = "1.0.0", features = ["ceprint"] }
dirs = "5.0.1"
filetime = "0.2.25"
globwalk = "0.9.1"
indicatif = "0.17.8"
serde = { version = "1.0.214", features = ["derive"] }
toml = "0.8.19"
# maybe we want to prevent concurrent runs of wargo eventually:
# fd-lock = "3.0.2"