mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-01-10 12:48:46 -05:00
34 lines
616 B
TOML
34 lines
616 B
TOML
[package]
|
|
name = "wgpu-remote"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Dzmitry Malyshau <kvark@mozilla.com>",
|
|
"Joshua Groves <josh@joshgroves.com>",
|
|
]
|
|
edition = "2018"
|
|
license = "MPL-2.0"
|
|
publish = false
|
|
|
|
[lib]
|
|
# Enabling these targets makes our CI bots try to build them and fail atm
|
|
#crate-type = ["lib", "cdylib", "staticlib"]
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[dependencies.core]
|
|
path = "../wgpu-core"
|
|
package = "wgpu-core"
|
|
version = "0.5"
|
|
features = ["serde"]
|
|
|
|
[dependencies.wgt]
|
|
path = "../wgpu-types"
|
|
package = "wgpu-types"
|
|
version = "0.5"
|
|
features = ["serde"]
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
parking_lot = { version = "0.10" }
|