blob: d6d9339a059f0eb37c8bfebecb3f53fd434cd418 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[package]
name = "rure"
version = "0.2.1" #:version
authors = ["The Rust Project Developers"]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/rust-lang/regex"
documentation = "https://github.com/rust-lang/regex/tree/master/regex-capi"
homepage = "https://github.com/rust-lang/regex"
description = """
A C API for Rust's regular expression library.
"""
[lib]
name = "rure"
crate-type = ["staticlib", "cdylib"]
[dependencies]
libc = "0.2"
regex = "1.4.2"
|