-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (30 loc) · 975 Bytes
/
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
[package]
name = "icemelter"
version = "0.3.2"
description = "Tool to minimize files that trigger internal compiler errors (ICEs)"
keywords = ["ice", "rustc"]
edition = "2021"
authors = ["Langston Barrett <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/langston-barrett/icemelter"
repository = "https://github.com/langston-barrett/icemelter"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
clap-verbosity-flag = { version = "3" }
log = "0.4"
nu-ansi-term = { version = "0.50" }
num_cpus = { version = "1" }
once_cell = "1.20.2"
regex = "1"
reqwest = { version = "0.12", features = ["blocking", "json"], optional = true }
serde = { version = "1", features = ["derive"], optional = true }
tempfile = "3"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["json"] }
tree-sitter = "0.20"
tree-sitter-rust = "0.20"
treereduce = "0.3"
[features]
fetch = ["dep:reqwest", "dep:serde"]