1[package] 2name = "rure" 3version = "0.2.2" #:version 4authors = ["The Rust Project Developers"] 5license = "MIT OR Apache-2.0" 6readme = "README.md" 7repository = "https://github.com/rust-lang/regex" 8documentation = "https://github.com/rust-lang/regex/tree/master/regex-capi" 9homepage = "https://github.com/rust-lang/regex" 10description = """ 11A C API for Rust's regular expression library. 12""" 13workspace = ".." 14edition = "2018" 15 16[lib] 17name = "rure" 18crate-type = ["staticlib", "cdylib", "rlib"] 19 20[dependencies] 21libc = "0.2" 22regex = { version = "1", path = ".." } 23