-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
52 lines (44 loc) · 952 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "conjure"
version = "0.1.0"
authors = ["Benjamin Brittain <[email protected]>"]
license = "AGPL-3.0"
edition = "2021"
resolver = "2"
[dependencies]
argh = "0.1"
nalgebra = "0.29"
thiserror = "1"
winit = "0.26"
cgmath = "0.18"
env_logger = "0.9"
log = "0.4"
wgpu = "0.11"
futures = {version = "0.3", features = ["executor"]}
bytemuck = { version = "1.4", features = [ "derive" ] }
regex = "1.5"
notify = "4.0.16"
parking_lot = "0.11"
rayon = { version = "1.5", optional = true }
smallvec = "1.7"
[lib]
name = "conjure"
path = "src/lib.rs"
[[bin]]
name = "conjure-bin"
path = "src/main.rs"
[[example]]
name = "sphere"
[profile.release]
debug = true
panic = "abort"
lto = "thin"
[dev-dependencies]
pprof = { version = "0.6", features = ["flamegraph", "criterion"] }
criterion = { version = "0.3", features = ["html_reports"] }
[[bench]]
name = "octree_render"
harness = false
[features]
default = ["parallel"]
parallel = ["rayon"]