-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (34 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
40 lines (34 loc) · 1.16 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
cargo-features = ["profile-rustflags"]
[workspace]
resolver = "2"
members = [
# "rtori-cli",
"core/fold",
"core/core",
"core/core-ffi",
"core/simd-common",
"core/os/model",
"core/os/simd",
"core/os/fold-importer",
#"core/os//wgpu"
"xtask"]
[patch.crates-io]
simba = { git = 'https://github.com/aabizri/simba.git', branch = "master"}
#diplomat = { git = 'https://github.com/aabizri/diplomat.git', branch = "feature-custom-allocators" }
#diplomat-runtime = { git = 'https://github.com/aabizri/diplomat.git', branch = "feature-custom-allocators" }
#diplomat_core = { git = 'https://github.com/aabizri/diplomat.git', branch = "feature-custom-allocators" }
#diplomat-tool = { git = 'https://github.com/aabizri/diplomat.git', branch = "feature-custom-allocators" }
[profile.dev]
debug = true
[profile.release]
codegen-units = 1
lto = "thin"
debug = true
[profile.bench]
inherits = "release"
# Optimize for size in the wasm-release profile to reduce load times and bandwidth usage on web.
[profile.wasm-release]
inherits = "release"
opt-level = "z"
# Strip all debugging information from the binary to slightly reduce file size.
strip = "debuginfo"