-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (20 loc) · 811 Bytes
/
Copy pathCargo.toml
File metadata and controls
23 lines (20 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/elizabeth-suehr/grass"
[workspace.dependencies]
# Inter-crate paths so cargo resolves them inside this workspace.
grass_scheduler = { path = "crates/grass_scheduler", version = "0.1.0" }
grass_app = { path = "crates/grass_app", version = "0.1.0" }
grass_io = { path = "crates/grass_io", version = "0.1.0" }
grass_mpi = { path = "crates/grass_mpi", version = "0.1.0", default-features = false }
grass_derive = { path = "crates/grass_derive", version = "0.1.0" }
grass_multi = { path = "crates/grass_multi", version = "0.1.0" }
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1