-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
28 lines (26 loc) · 1.05 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
# corp-finance-{core,wasm,cli} extracted to https://github.com/rob-otix-ai/corp-finance-core
# (Phase 29 Wave 18). cfa_agent is the agent integration layer; corp-finance-core is the
# compute library, published to crates.io. packages/bindings consumes corp-finance-core
# from crates.io (currently pinned at 1.1.0); for local iteration before a publish, swap
# the version dep for `path = "/home/robert/corp-finance-core/crates/corp-finance-core"`.
[workspace]
resolver = "2"
members = [
"packages/bindings",
]
[workspace.package]
version = "1.0.0"
edition = "2021"
authors = ["Robert Fall <hello@rob-otix.com>"]
license = "MIT"
# WASM release profile (used by `cargo build --release --target wasm32-unknown-unknown`
# and by `wasm-pack build --release` for the corp-finance-wasm crate).
# Wave 17a — bundle size optimization: panic=abort drops unwinding code,
# strip removes debug symbols, codegen-units=1 + lto=fat maximises
# cross-crate inlining and dead-code elimination.
[profile.release]
opt-level = "z"
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true