-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (29 loc) · 847 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
[package]
resolver = "2"
name = "splatter"
version = "0.0.1"
authors = ["Alexander Meißner <[email protected]>"]
description = "A gaussian splat render engine"
repository = "https://github.com/Lichtso/splatter/"
keywords = ["3d", "graphics", "splats", "point-cloud"]
license = "MIT"
edition = "2018"
[dependencies]
wgpu = "0.17.0"
geometric_algebra = "0.3.0"
### Showcase Example ###
[dev-dependencies]
winit = "0.28.7"
log = "0.4"
[package.metadata.wasm-pack.profile.release]
wasm-opt = ["-Oz", "--enable-mutable-globals"]
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
async-executor = "1.0"
pollster = "0.2"
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
web-sys = "0.3.64"
js-sys = "0.3.64"
wasm-bindgen = "0.2.87"
wasm-bindgen-futures = "0.4.36"
console_error_panic_hook = "0.1.7"
console_log = "0.1.2"