13 lines
614 B
TOML
13 lines
614 B
TOML
|
|
# Since the only `.cabal` format parser implementation and specification live
|
||
|
|
# in Cabal itself ... this deadly simple config file is used by `hs-bindgen`
|
||
|
|
# Rust crate to get needed data (like default exposed module name).
|
||
|
|
|
||
|
|
default = "GarnetRs"
|
||
|
|
|
||
|
|
# There is an unlikely future where instead we have a Rust `.cabal` parser,
|
||
|
|
# that most likely would rely under the hood on a Haskell static lib wrapper
|
||
|
|
# of `Cabal.Parse` or https://hackage.haskell.org/package/Cabal-syntax library.
|
||
|
|
# But even in this case, it would be nice to know the `cargo-cabal` version that
|
||
|
|
# generated the `.cabal` file used.
|
||
|
|
|
||
|
|
version = "0.8.0"
|