mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 14:55:05 +00:00
19 lines
820 B
TOML
19 lines
820 B
TOML
[package]
|
|
name = "wgpu-info"
|
|
version = "0.12.0"
|
|
authors = ["wgpu developers"]
|
|
edition = "2018"
|
|
description = "Adapter information and per-adapter test program"
|
|
homepage = "https://github.com/gfx-rs/wgpu"
|
|
repository = "https://github.com/gfx-rs/wgpu"
|
|
keywords = ["graphics"]
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
# Even if you aren't actually building `wgpu-info`,
|
|
# enabling the `angle` and `vulkan-portability` features of wgpu enables them for everything built in this workspace.
|
|
# This includes the web examples, which fail to compile when Vulkan is enabled,
|
|
# so disable that on web (by just disabling everything, since this won't compile for wasm anyway).
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
env_logger = "0.9"
|
|
wgpu = { version = "0.12", path = "../wgpu", features = ["angle", "vulkan-portability"] }
|