-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 760 Bytes
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 760 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
[package]
name = "onevpl"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
[dependencies]
once_cell = "1.17.1"
intel-onevpl-sys = { version = "0.1.0", path = "intel-onevpl-sys" }
libloading = "0.7.4"
tracing = "0.1.37"
bitflags = "1.3.2"
tokio = { version = "1.25.0", features = ["rt", "macros", "rt-multi-thread", "sync"] }
enum-repr = "0.2.6"
bitmask-enum = "2.1.0"
[target.'cfg(unix)'.dependencies]
libva-sys = "0.1.2"
[workspace]
members = ["intel-onevpl-sys"]
[dev-dependencies]
rand = "0.8.5"
tracing-subscriber = "0.3.16"
tracing-test = "0.2.4"
sha2 = "0.10.6"
hex-literal = "0.4.1"
trycmd = { version = "0.14.16", features = ["examples"] }