mirror of
https://github.com/servo/servo.git
synced 2025-10-17 16:59:27 +01:00
This fixes errors when running `./mach clippy -r -p layout_2020` and `./mach clippy -r -p script`. Also addressing an unused import warning when running the latter. Testing: These changes do not require tests because it's just a compile error fix. Signed-off-by: Oriol Brufau <obrufau@igalia.com>
22 lines
546 B
TOML
22 lines
546 B
TOML
[package]
|
|
name = "webgpu_traits"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "webgpu_traits"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
arrayvec = { workspace = true }
|
|
base = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
malloc_size_of = { workspace = true }
|
|
serde = { workspace = true }
|
|
webrender_api = { workspace = true }
|
|
wgpu-core = { workspace = true, features = ["serde", "wgsl"] }
|
|
wgpu-types = { workspace = true }
|