-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (54 loc) · 2.59 KB
/
Copy pathCargo.toml
File metadata and controls
60 lines (54 loc) · 2.59 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
60
[workspace]
members = [
"crates/*",
"examples/*",
]
resolver = "2"
[workspace.package]
authors = ["AsherJingkongChen"]
edition = "2021"
homepage = "https://github.com/AsherJingkongChen/Gausplat"
repository = "https://github.com/AsherJingkongChen/Gausplat"
rust-version = "1.83.0"
version = "0.0.0+alpha"
[workspace.dependencies]
gausplat = {path = "crates/gausplat"}
gausplat-loader = {path = "crates/gausplat-loader"}
gausplat-renderer = {path = "crates/gausplat-renderer"}
gausplat-trainer = {path = "crates/gausplat-trainer"}
burn = {git = "https://github.com/tracel-ai/burn", rev = "da8de562b0f67869c8a8c629b8535f938fd317f9", default-features = false}
burn-jit = {git = "https://github.com/tracel-ai/burn", rev = "da8de562b0f67869c8a8c629b8535f938fd317f9", default-features = false}
burn-ndarray = {git = "https://github.com/tracel-ai/burn", rev = "da8de562b0f67869c8a8c629b8535f938fd317f9", default-features = false}
burn-tensor = {git = "https://github.com/tracel-ai/burn", rev = "da8de562b0f67869c8a8c629b8535f938fd317f9", default-features = false}
bytemuck = {version = "1.21.0", default-features = false}
byteorder = {version = "1.5.0", default-features = false}
clap = {version = "4.5.23", default-features = false}
color-eyre = {version = "0.6.3", default-features = false}
dashmap = {version = "6.0.1", default-features = false}
derive_more = {version = "1.0.0", default-features = false}
divan = {version = "0.1.17", default-features = false}
globset = {version = "0.4.15", default-features = false}
humansize = {version = "2.1.3", default-features = false}
image = {version = "0.25.5", default-features = false}
indexmap = {version = "2.7.0", default-features = false}
kdam = {version = "0.6.2", default-features = false}
lazy_static = {version = "1.5.0", default-features = false}
log = {version = "0.4.22", default-features = false}
paste = {version = "1.0.15", default-features = false}
ply-rs = {version = "0.1.3", default-features = false}
pretty_env_logger = {version = "0.5.0", default-features = false}
rand = {version = "0.8.5", default-features = false}
rand_distr = {version = "0.4.3", default-features = false}
rayon = {version = "1.10.0", default-features = false}
serde = {version = "1.0.215", default-features = false}
serde_json = {version = "1.0.133", default-features = false}
thiserror = {version = "1.0.69", default-features = false}
walkdir = {version = "2.5.0", default-features = false}
[patch.crates-io]
wgpu = {git = "https://github.com/AsherJingkongChen/wgpu", rev = "b51332b93932155c32f42b43c71d3a4cf945559e"}
[profile.dev]
opt-level = 1
[profile.release]
opt-level = 3
panic = "abort"
strip = true