-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 814 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 814 Bytes
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
[package]
name = "pcg-mutation-testing"
version = "0.1.0"
edition = "2021"
[dependencies]
pcg = { path = "../pcg" }
borrowck = { path = "borrowck" }
bumpalo = { version = "3.12.0", features = ["collections"] }
serde = { version = "1.0.133", features = ["derive"] }
serde_json = { version = "1.0.64", features = ["preserve_order"] }
serde_derive = "1.0"
rand = "0.9.0"
toml = "0.7"
indexmap = { version = "2.8.0", features = ["serde"] }
reqwest = { version = "^0.11", features = ["blocking"] }
rustversion = "1.0"
chrono = "0.4.41"
rayon = "1.10.0"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
derive_more = { version = "2.0.1", features = ["full"] }
[package.metadata.rust-analyzer]
# This crate uses #[feature(rustc_private)]
rustc_private = true
[[bin]]
name = "mutation_testing_bin"
path = "src/main.rs"