forked from cloudhead/rgx.legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (32 loc) · 777 Bytes
/
Cargo.toml
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
33
34
35
36
37
[package]
name = "rgx"
version = "0.1.5"
description = "Mid-level 2D graphics library built on wgpu"
repository = "https://github.com/cloudhead/rgx"
homepage = "https://github.com/cloudhead/rgx"
documentation = "https://docs.rs/rgx"
authors = ["Alexis Sellier <[email protected]>"]
license = "MIT"
edition = "2018"
keywords = ["graphics", "gamedev", "vulkan", "2d"]
[lib]
name = "rgx"
[features]
default = []
vulkan = ["wgpu/vulkan"]
metal = ["wgpu/metal"]
dx11 = ["wgpu/dx11"]
dx12 = ["wgpu/dx12"]
[dependencies]
wgpu = "0.3.0"
env_logger = "0.6.2"
cgmath = { version = "0.17.0", optional = true }
num-traits = "0.2.8"
raw-window-handle = "0.1"
[dev-dependencies]
winit = "0.20.0-alpha3"
image = "0.22.1"
criterion = "0.2.11"
[[bench]]
name = "benchmark"
harness = false