-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 791 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (30 loc) · 791 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
31
32
33
[package]
name = "bcore-mutation"
version = "0.8.0"
edition = "2021"
authors = ["Bruno Garcia <brunoely.gc@gmail.com>"]
description = "Mutation testing tool for Bitcoin Core"
license = "MIT"
repository = "https://github.com/brunoerg/bcore-mutation"
readme = "README.md"
[[bin]]
name = "bcore-mutation"
path = "src/main.rs"
[dependencies]
clap = { version = "4.4", features = ["derive"] }
regex = "1.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
anyhow = "1.0"
thiserror = "1.0"
rand = "0.8"
chrono = { version = "0.4", features = ["serde"] }
futures = "0.3"
walkdir = "2.4"
rayon = "1.8"
rusqlite = { version = "0.32", features = ["bundled"] }
sha2 = "0.10"
tempfile = "3.8"
[dev-dependencies]
tempfile = "3.8"