-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (32 loc) · 1010 Bytes
/
Cargo.toml
File metadata and controls
38 lines (32 loc) · 1010 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
34
35
36
37
38
[package]
name = "cargo-subspace"
description = "A tool to make rust-analyzer work better with very large cargo workspaces"
license = "MIT"
version = "0.2.4"
edition = "2024"
keywords = ["rust-analyzer", "cargo", "workspace", "tools"]
categories = ["command-line-utilities", "development-tools::cargo-plugins"]
repository = "https://github.com/ethowitz/cargo-subspace"
readme = "README.md"
[dependencies]
anyhow = "1.0.100"
cargo_metadata = "0.22.0"
clap = { version = "4.5.48", features = ["derive", "env"] }
serde = { version = "1.0.225", features = ["derive"] }
serde_json = "1.0.145"
tracing = "0.1.41"
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.20", features = ["json"] }
[target.'cfg(not(target_os = "windows"))'.dependencies]
pprof = { version = "0.15.0", features = ["flamegraph"] }
[build-dependencies]
anyhow = "1.0.100"
[profile.release]
debug = "full"
strip = "none"
[lib]
name = "cargo_subspace"
path = "src/lib.rs"
[[bin]]
name = "cargo-subspace"
path = "src/main.rs"