-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
49 lines (40 loc) · 1.17 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "renderdoc"
version = "0.12.1"
edition = "2018"
resolver = "2"
authors = ["Eyal Kalderon <[email protected]>"]
description = "RenderDoc application bindings for Rust"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/ebkalderon/renderdoc-rs"
repository = "https://github.com/ebkalderon/renderdoc-rs"
documentation = "https://docs.rs/renderdoc/"
readme = "README.md"
keywords = ["graphics", "profiling", "renderdoc", "tracing"]
categories = ["development-tools::debugging", "rendering"]
[package.metadata.docs.rs]
all-features = true
[badges]
maintenance = { status = "actively-developed" }
[features]
default = []
# Private feature only intended for doctests in CI
ci = []
[dependencies]
bitflags = "2.0"
float-cmp = "0.9"
libloading = "0.8"
once_cell = "1.0"
renderdoc-sys = { version = "1.1.0", path = "./renderdoc-sys" }
glutin = { version = "0.30", optional = true }
winit = { version = "0.28", optional = true }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["d3d12","d3d11"] }
wio = "0.2"
[dev-dependencies]
pollster = "0.3"
wgpu = "0.15"
wgpu-subscriber = "0.1.0"
winit = "0.28"
[workspace]
members = [".", "renderdoc-sys"]