-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCargo.toml
36 lines (30 loc) · 1.02 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
[package]
name = "wgpu-profiler"
version = "0.21.0"
authors = ["Andreas Reich <[email protected]>"]
edition = "2021"
description = "Simple profiler scopes for wgpu using timer queries"
homepage = "https://github.com/Wumpf/wgpu-profiler"
repository = "https://github.com/Wumpf/wgpu-profiler"
keywords = ["graphics"]
license = "MIT OR Apache-2.0"
[lints]
clippy.doc_markdown = "warn"
[features]
tracy = ["dep:tracy-client", "profiling/profile-with-tracy"]
puffin = ["dep:puffin", "profiling/profile-with-puffin"]
[lib]
[dependencies]
parking_lot = "0.12" # Used for Mutex & RwLock. Note that wgpu already depends on parking_lot as well.
thiserror = "2"
# TODO: Should use `default-features=false`, waiting on https://github.com/gfx-rs/wgpu/pull/6946
wgpu = "24.0.0"
tracy-client = { version = "0.18", optional = true }
puffin = { version = "0.19.1", optional = true }
[dev-dependencies]
futures-lite = "2"
profiling = "1"
puffin_http = "0.16.1"
tracy-client = "0.18"
wgpu = { version = "24.0.0", default-features = true }
winit = "0.30"