mirror of
https://github.com/Noratrieb/cargo-minimize.git
synced 2026-01-14 16:35:01 +01:00
37 lines
1 KiB
TOML
37 lines
1 KiB
TOML
[workspace]
|
|
members = ["./", "./prettyplease-forked"]
|
|
exclude = ["test-cases/*", "full-tests/*"]
|
|
|
|
[package]
|
|
name = "cargo-minimize"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "A tool for minimizing rustc ICEs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.65"
|
|
clap = { version = "4.0.29", features = ["derive"] }
|
|
ctrlc = "3.2.5"
|
|
owo-colors = "3.5.0"
|
|
prettyplease = { path = "./prettyplease-forked", features = ["verbatim"]}
|
|
proc-macro2 = { version = "1.0.48", features = ["span-locations"] }
|
|
quote = "1.0.23"
|
|
rustfix = "0.6.1"
|
|
serde = { version = "1.0.151", features = ["derive"] }
|
|
serde_json = "1.0.90"
|
|
syn = { version = "1.0.101", features = ["full", "visit-mut"] }
|
|
tempfile = "3.3.0"
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
|
|
tracing-tree = "0.2.2"
|
|
walkdir = "2.3.2"
|
|
|
|
[target."cfg(unix)".dependencies]
|
|
libc = "0.2.138"
|
|
|
|
[dev-dependencies]
|
|
fs_extra = "1.3.0"
|
|
once_cell = "1.17.1"
|
|
regex = "1.7.3"
|