-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 786 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 786 Bytes
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
[package]
name = "cargo-wsdeps"
description = "Cargo subcommand to manage dependencies in a workspace."
version = "0.1.2"
repository = "https://github.com/ecliptical/cargo-wsdeps"
edition = "2024"
authors = ["Peter Nehrer <pnehrer@eclipticalsoftware.com>"]
license = "MIT"
[dependencies]
anyhow = "1"
cargo_metadata = "0.23"
cargo_toml = "0.22"
clap = { version = "4", features = ["cargo"] }
clap-cargo = { version = "0.18", features = ["cargo_metadata"] }
patcher = "0.2"
pathdiff = { version = "0.2", features = ["camino"] }
toml_edit = "0.24"
jemallocator = { version = "0.5", optional = true }
[features]
jemalloc = ["jemallocator"]
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true
panic = "abort"