-
Notifications
You must be signed in to change notification settings - Fork 55
/
Cargo.toml
39 lines (37 loc) · 959 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
33
34
35
36
37
38
39
[package]
authors = ["Mark Simulacrum <[email protected]>"]
build = "build.rs"
categories = ["development-tools"]
description = "Bisects rustc toolchains with rustup"
keywords = ["rustup"]
license = "MIT OR Apache-2.0"
name = "cargo-bisect-rustc"
readme = "README.md"
repository = "https://github.com/rust-lang/cargo-bisect-rustc"
version = "0.6.9"
edition = "2021"
[dependencies]
dialoguer = { version = "0.11.0", default-features = false }
home = "0.5"
env_logger = "0.11.0"
thiserror = "2"
anyhow = "1"
flate2 = "1.0.24"
git2 = "0.19.0"
log = "0.4"
pbr = "1.1.1"
reqwest = { version = "0.12.1", features = ["blocking", "json"] }
rustc_version = "0.4.0"
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0"
clap = { version = "4.5", features = ["derive", "wrap_help"] }
tar = "0.4"
tee = "0.1"
tempfile = "3"
xz2 = "0.1.7"
chrono = "0.4.22"
colored = "2"
regex = "1.11.0"
[dev-dependencies]
quickcheck = "1"
trycmd = "0.15.0"