forked from tikv/fail-rs
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 786 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 786 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
[package]
name = "fail-parallel"
version = "0.5.1"
authors = ["The SlateDB Project Developers"]
license = "Apache-2.0"
keywords = ["failpoints", "fail"]
repository = "https://github.com/slatedb/fail-parallel"
readme = "README.md"
homepage = "https://github.com/slatedb/fail-parallel"
documentation = "https://docs.rs/fail"
description = "Fail points for rust. A fork that supports parallel test execution."
categories = ["development-tools::testing"]
edition = "2021"
exclude = ["/.github/*", "/.travis.yml", "/appveyor.yml"]
[dependencies]
log = { version = "0.4", features = ["std"] }
once_cell = "1.9.0"
rand = "0.9"
tokio = { version = "1.40.0", features = ["sync", "time", "rt", "macros", "test-util"] }
[features]
failpoints = []
[package.metadata.docs.rs]
all-features = true