Merge pull request #14 from TheBlueMatt/main
[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
11 [profile.release]
12 incremental = true
13 codegen-units = 256
14 opt-level = 2
15 lto = false
16 debug = true
17
18 # We're not in the workspace as we're just a binary code generator:
19 [workspace]