-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
48 lines (45 loc) · 1.33 KB
/
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
40
41
42
43
44
45
46
47
48
[workspace]
resolver = "2"
members = [
"cargo-difftests",
"cargo-difftests-core",
"cargo-difftests-testclient",
"sample/cargo-difftests-sample-project",
]
[workspace.package]
version = "0.6.1"
edition = "2021"
description = "A selective regression testing tool for Rust projects"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/dnbln/cargo-difftests"
[workspace.dependencies]
cargo-difftests = { path = "cargo-difftests", version = "=0.6.1" }
cargo-difftests-core = { path = "cargo-difftests-core", version = "=0.6.1" }
cargo-difftests-testclient = { path = "cargo-difftests-testclient", version = "=0.6.1" }
anyhow = "1.0.66"
chrono = { version = "0.4.23", features = ["serde"] }
clap = { version = "4.0.26", features = ["derive", "string", "env"] }
git2 = "0.18"
home = "0.5.4"
indoc = "2"
libc = "0.2"
libgit2-sys = "0.16.1"
log = "0.4.17"
path-absolutize = "3.0.14"
path-slash = "0.2.1"
pretty_env_logger = "0.5.0"
proc-macro2 = "1.0.47"
prodash = { version = "28.0.0", default-features = false, features = [
"render-line",
"render-line-crossterm",
"render-line-autoconfigure",
"progress-tree",
] }
quote = "1.0.21"
rustc-demangle = "0.1.21"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
syn = { version = "2", features = ["full"] }
tempfile = "3.0"
thiserror = "1.0"