-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (27 loc) · 995 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (27 loc) · 995 Bytes
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
[workspace]
members = [
"utils",
"softy",
"softy-eval",
"softy-hdk",
"scene-hdk",
"implicits",
"cimplicits",
"implicits-hdk",
"benchmark",
]
resolver = "2"
[profile.release]
debug = true # Change this to true to enable debug symbols in release mode
rpath = false
[patch.crates-io]
# Ensure that downstream dependencies on meshx are the same as what we use for compatibility.
meshx = { version = "0.6", git = "https://github.com/elrnv/meshx.git", branch = "vtkio-0.7" }
# [patch.'https://github.com/elrnv/vtkio.git']
# vtkio = { version = "0.7", git = "https://github.com//elrnv/vtkio.git", branch = "no-lzma" }
#[patch.'https://github.com/Andlon/mkl-sys']
#mkl-sys = { git = "https://github.com/elrnv/mkl-sys.git" }
[workspace.dependencies]
geo = { package = "meshx", version = "0.6", git = "https://github.com/elrnv/meshx.git", branch = "vtkio-0.7", features = ["io", "serde_all"] }
env_logger = "0.11"
na = { package = "nalgebra", version = "0.32" }