-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (37 loc) · 1.06 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
[package]
name = "imlet"
version = "0.1.1"
edition = "2021"
authors = ["Joel Hilmersson <[email protected]>"]
description = "A lightweight engine for implicit modeling."
license = "MIT OR Apache-2.0"
repository = "https://github.com/joelhi/imlet-rs"
documentation = "https://docs.rs/imlet"
readme = "README.crates.md"
keywords = [
"implicit",
"geometry",
"mesh-generation",
"3d",
"marching-cubes"
]
exclude = ["assets/models/*","media",".github/*"]
[dependencies]
env_logger = "0.11.3"
erased-serde = "0.4.5"
hashbrown = "0.15.2"
log = "0.4.21"
num-traits = "0.2.19"
rayon = "1.10.0"
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
smallvec = "1.13.2"
clap = "4.5.26"
# Viewer dependencies
wgpu = { version = "22.0", optional = true }
winit = { version = "0.29", optional = true }
cgmath = { version = "0.18.0", optional = true }
pollster = { version = "0.3", optional = true }
bytemuck = { version = "1.12", features = ["derive"], optional = true }
[features]
viewer = ["winit", "wgpu", "cgmath", "pollster", "bytemuck"]