-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
51 lines (46 loc) · 1.17 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
description = "The Atlas framework"
authors = ["Nuno Neto <nuno.martingo@fc.up.pt>"]
license = "MIT"
homepage = "https://github.com/nuno1212s/atlas"
repository = "https://github.com/nuno1212s/atlas"
documentation = "https://docs.rs/atlas"
readme = "README.md"
[workspace]
members = [
"Atlas-Common",
"Atlas-Core",
"Atlas-Decision-Log",
"Atlas-Reconfiguration",
"Atlas-Metrics",
"Atlas-capnp",
"Atlas-Communication",
"Atlas-Comm-MIO",
"Atlas-SMR-Execution",
"Atlas-Client",
"Atlas-SMR-Replica",
"Atlas-Persistent-Log",
"Atlas-Log-Transfer",
"Atlas-SMR-Application",
"Atlas-View-Transfer",
"Atlas-Tools/atlas-default-configs",
"Atlas-Tools/keygen"
]
# https://doc.rust-lang.org/cargo/reference/profiles.html
[profile.release]
opt-level = 3
panic = "abort" # disable stack unwinding on panic
overflow-checks = false # disable integer overflow checks.
codegen-units = 16
lto = true # LLVM link time optimizations
debug = false
debug-assertions = false
incremental = false
[profile.dev]
opt-level = 0
panic = "unwind"
overflow-checks = true
codegen-units = 32
lto = false
debug = true
debug-assertions = true
incremental = true