compile fail crate with failpoints feature

This commit is contained in:
Heikki Linnakangas
2022-12-08 13:30:18 +02:00
parent d58cad7b5d
commit 2689e35108
3 changed files with 1 additions and 3 deletions

1
Cargo.lock generated
View File

@@ -4892,7 +4892,6 @@ dependencies = [
"clap 4.0.15",
"crossbeam-utils",
"either",
"fail",
"futures-channel",
"futures-task",
"futures-util",

View File

@@ -20,7 +20,7 @@ close_fds = "0.3.2"
const_format = "0.2.21"
crc32c = "0.6.0"
crossbeam-utils = "0.8.5"
fail = "0.5.0"
fail = { version = "0.5", default-features = false, features = ["failpoints"] }
futures = "0.3.13"
git-version = "0.3.5"
hex = "0.4.3"

View File

@@ -19,7 +19,6 @@ bytes = { version = "1", features = ["serde", "std"] }
clap = { version = "4", features = ["color", "derive", "error-context", "help", "std", "string", "suggestions", "usage"] }
crossbeam-utils = { version = "0.8", features = ["once_cell", "std"] }
either = { version = "1", features = ["use_std"] }
fail = { version = "0.5", default-features = false, features = ["failpoints"] }
futures-channel = { version = "0.3", features = ["alloc", "futures-sink", "sink", "std"] }
futures-task = { version = "0.3", default-features = false, features = ["alloc", "std"] }
futures-util = { version = "0.3", features = ["alloc", "async-await", "async-await-macro", "channel", "futures-channel", "futures-io", "futures-macro", "futures-sink", "io", "memchr", "sink", "slab", "std"] }