[package] name = "wrapgen" version = "0.2.0" description = "A tool to automatically generate safe wrappers around FFI functions" authors = ["Clemens Tiedt "] license = "MIT" repository = "https://github.com/ctiedt/wrapgen" readme = "README.md" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "wrapgen" path = "src/lib.rs" [[bin]] name = "wrapgen" path = "src/main.rs" [dependencies] regex = "1.3.9"