-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (49 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
59 lines (49 loc) · 1.16 KB
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
50
51
52
53
54
55
56
57
58
59
[package]
name = "interpreted-executor"
version = "0.1.0"
edition = "2024"
license = "MIT OR Apache-2.0"
authors.workspace = true
[features]
default = []
gpu = ["graphene-std/gpu", "graphene-std/wgpu"]
wasm = ["graphene-std/wasm"]
[dependencies]
# Local dependencies
graphene-std = { workspace = true }
graph-craft = { workspace = true }
graphene-core = { workspace = true }
wgpu-executor = { workspace = true }
core-types = { workspace = true }
dyn-any = { workspace = true }
# Workspace dependencies
log = { workspace = true }
glam = { workspace = true }
futures = { workspace = true }
once_cell = { workspace = true }
serde = { workspace = true }
[dev-dependencies]
# Workspace dependencies
graph-craft = { workspace = true, features = ["loading"] }
criterion = { workspace = true }
gungraun = { workspace = true }
preprocessor = { workspace = true }
# Benchmarks
[[bench]]
name = "update_executor"
harness = false
[[bench]]
name = "run_once"
harness = false
[[bench]]
name = "run_cached"
harness = false
[[bench]]
name = "update_executor_gungraun"
harness = false
[[bench]]
name = "run_once_gungraun"
harness = false
[[bench]]
name = "run_cached_gungraun"
harness = false