swordfish/Cargo.toml
tretrauit c72d2cf16b fix(tesseract/regex): support unicode characters
Mostly from the first part of regexify_text
2024-02-10 11:17:56 +07:00

27 lines
466 B
TOML

[workspace]
resolver = "1"
members = [
"swordfish-common",
"swordfish"
, "swordfish-user"]
default-members = ["swordfish"]
[profile.release]
opt-level = 3
debug = false
split-debuginfo = '...' # Platform-specific.
strip = "symbols"
debug-assertions = false
overflow-checks = false
lto = "thin"
panic = 'unwind'
incremental = false
codegen-units = 16
rpath = false
[profile.release-debug]
inherits = "release"
debug = true
incremental = true
strip = false