Disable asan checks which are hitting an asan regression
[ldk-c-bindings] / c-bindings-gen / Cargo.toml
1 [package]
2 name = "c-bindings-gen"
3 version = "0.0.1"
4 authors = ["Matt Corallo"]
5 edition = "2018"
6
7 [dependencies]
8 syn = { version = "1", features = ["full", "extra-traits"] }
9 proc-macro2 = "1"
10 quote = "1"
11
12 [profile.release]
13 incremental = true
14 codegen-units = 256
15 opt-level = 2
16 lto = false
17 debug = true
18
19 # We're not in the workspace as we're just a binary code generator:
20 [workspace]