harper/Cargo.toml
Elijah Potter db89187c3f
feat(brill): train and use Brill tagger (#1344)
Co-authored-by: hippietrail <hippietrail@users.noreply.github.com>
2025-06-16 15:33:49 -06:00

21 lines
618 B
TOML

[workspace]
members = [ "harper-cli", "harper-core", "harper-ls", "harper-comments", "harper-wasm", "harper-tree-sitter", "harper-html", "harper-literate-haskell", "harper-typst" , "harper-stats", "harper-pos-utils", "harper-brill"]
resolver = "2"
# Comment out the below lines if you plan to use a debugger.
[profile.test]
opt-level = 1
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
# Stripping binaries triggers a bug in `wasm-opt`.
# Disable it for now.
# strip = true
# Release profile with debug info.
# Useful for debugging and profiling.
[profile.release-debug]
inherits = "release"
debug = 2