-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
43 lines (39 loc) · 1.27 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
[package]
name = "deqp-runner"
description = "Run the Vulkan conformance test suite in parallel"
version = "0.1.0"
authors = ["Flakebi <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2018"
[features]
default = ["bin"]
# Build binaries
bin = ["anyhow", "clap", "num_cpus", "slog-async", "slog-envlogger", "slog-term", "tokio/rt", "tokio/signal"]
[[bin]]
name = "deqp-runner"
required-features = ["bin"]
[dependencies]
anyhow = { version = "1", optional = true }
clap = { version = "4", features = ["cargo", "derive"], optional = true }
csv = "1.1"
futures = "0.3"
genawaiter = { version = "0.99", features = ["futures03"] }
indicatif = "0.17"
num_cpus = { version = "1", optional = true }
once_cell = "1"
rand = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
junit-report = "0.8"
slog = { version = "2", features = ["max_level_trace", "release_max_level_debug"] }
slog-async = { version = "2", optional = true }
slog-envlogger = { version = "2", optional = true }
slog-term = { version = "2", optional = true }
tempfile = "3"
thiserror = "1"
time = { version = "0.3", features = ["serde"] }
tokio = { version = "1", features = ["fs", "io-util", "macros", "process", "sync", "time"] }
tokio-stream = "0.1"
[dev-dependencies]
anyhow = "1"
num_cpus = "1"