mirror of
https://github.com/Mintplex-Labs/tiktoken.git
synced 2026-07-01 18:48:04 -04:00
16 lines
359 B
TOML
16 lines
359 B
TOML
[workspace]
|
|
|
|
members = [
|
|
"core",
|
|
"python",
|
|
"wasm"
|
|
]
|
|
|
|
[profile.release]
|
|
incremental = true
|
|
opt-level = 's' # Optimize for size
|
|
lto = true # Enable link-time optimization
|
|
codegen-units = 1 # Reduce number of codegen units to increase optimizations
|
|
panic = 'abort' # Abort on panic
|
|
strip = true # Strip symbols from binary*
|