This commit is contained in:
Simon Gardling
2022-04-22 12:46:02 -04:00
parent a9b51fab20
commit 8bf8bd917b
4 changed files with 64 additions and 37 deletions

View File

@@ -12,6 +12,18 @@ crate-type = ["cdylib"]
[features]
threading = ["async-lock", "rayon"]
[profile.release]
debug = false
codegen-units = 1
opt-level = "z" #optimize for size
lto = true
strip = true
[profile.dev]
debug = true
opt-level = 0
lto = true
strip = false
[dependencies]
parsing = { path = "./parsing" }