-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
66 lines (53 loc) · 1.29 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "rustyrts"
version = "0.1.0"
edition = "2021"
description = "Static or Dynamic Regression Test Selection"
license = "Apache 2.0"
repository = "https://github.com/tum-i4/rustyrts"
keywords = ["static analysis", "dynamic analysis", "regression test selection"]
categories = ["command-line-utilities", "development-tools::cargo-plugins"]
[package.metadata.rust-analyzer]
rustc_private = true
[profile.release]
debug = true
opt-level = 'z' # Optimize for size
[features]
default = ["fs_lock_file_guard", "enable_cargo_build"]
fs_lock_file_guard = []
enable_cargo_build = []
[[bin]]
name = "cargo-rustyrts"
[[bin]]
name = "rustyrts-static"
[[bin]]
name = "rustyrts-static-doctest"
[[bin]]
name = "rustyrts-dynamic"
[[bin]]
name = "rustyrts-dynamic-doctest"
[dependencies]
# imitating cargo test command
cargo = "0.78.0"
cargo-util = "0.2.11"
git2 = "0.18.3"
git2-curl = "0.19.0"
anyhow = "1.0.83"
anstyle = "1.0.4"
clap = "4.5.4"
# logging
tracing-subscriber = "0.3.18"
tracing = "0.1.40"
humantime = "2.1.0"
# utilities used in selecting tests
internment = { version = "0.8.3", features = ["arena"] }
itertools = "0.10.5"
regex = "1.7.1"
lazy_static = "1.4.0"
once_cell = "1.17.1"
file-guard = "0.2.0"
num_enum = "0.7.2"
dot = "0.1.4"
[dev-dependencies]
tempdir = "0.3.7"
test-case = "3.1.0"