[package] authors = ["Yvan Sraka "] description = "Handy macro to generate C-FFI bindings from Rust to Haskell" edition = "2021" license = "MIT OR Apache-2.0" name = "hs-bindgen-attribute" repository = "https://github.com/yvan-sraka/hs-bindgen-attribute" rust-version = "1.64.0" version = "0.9.2" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] proc-macro = true [dependencies] reflexive = { version = "0.4", optional = true } displaydoc = "0.2" hs-bindgen-types = "0.9" lazy_static = { version = "1.4", optional = true } quote = "1.0" semver = "1.0" serde = { version = "1.0", features = ["derive"] } syn = { version = "1.0", features = [ "full" ] } thiserror = "1.0" toml = "0.5" [features] default = [] full = ["reflexive"] reflexive = ["dep:reflexive", "dep:lazy_static"] [build-dependencies] rustc_version = "0.2"