-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (29 loc) · 875 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (29 loc) · 875 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
[workspace]
resolver = "3"
members = [
"crates/rsigma-parser",
"crates/rsigma-eval",
"crates/rsigma-convert",
"crates/rsigma-runtime",
"crates/rsigma-mcp",
"crates/rsigma-cli",
"crates/rsigma-lsp",
"crates/rstix",
]
exclude = ["fuzz"]
[workspace.package]
version = "0.16.0"
edition = "2024"
rust-version = "1.88.0"
license = "MIT"
repository = "https://github.com/timescale/rsigma"
homepage = "https://github.com/timescale/rsigma"
# Release profile knobs. `lto = "thin"` cuts ~10% off binary size at
# roughly 1.5x compile cost; `codegen-units = 1` improves runtime perf
# by giving the optimizer the whole module to look at; `strip = true`
# drops debug symbols so the published archives stay small. The Docker
# build runs `strip` separately and is unaffected by this profile.
[profile.release]
lto = "thin"
codegen-units = 1
strip = true