mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
21 lines
487 B
TOML
21 lines
487 B
TOML
[package]
|
|
name = "webgpu"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "webgpu"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
embedder_traits = {path = "../embedder_traits"}
|
|
ipc-channel = "0.12"
|
|
log = "0.4"
|
|
malloc_size_of = { path = "../malloc_size_of" }
|
|
serde = "1.0"
|
|
servo_config = {path = "../config"}
|
|
smallvec = "0.6"
|
|
wgpu-core = { version = "0.1.0", git = "https://github.com/gfx-rs/wgpu", features = ["serde"] }
|