-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
29 lines (25 loc) · 860 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "rosie-sys"
version = "1.3.1"
edition = "2018"
authors = ["Luke Peterson <luke@infoplatter.com>"]
license = "MIT OR Apache-2.0"
description = "A crate to build or link to librosie to access the Rosie Pattern Language"
repository = "https://github.com/luketpeterson/rosie-sys/"
readme = "README.md"
homepage = "https://rosie-lang.org/about/"
keywords = ["rosie", "pattern", "matching", "FSA", "regex"]
categories = ["text-processing", "encoding", "parsing"]
links = "rosie"
build = "build.rs"
[dependencies]
libc = "0.2.103"
mlua = { version = "0.7.4", features = [ "lua53", "vendored" ], optional = true }
[build-dependencies]
cc = "1.0.18"
pkg-config = { version = "0.3.9", optional = true }
[features]
link_shared_librosie = ["pkg-config"]
build_static_librosie = ["mlua"]
[package.metadata.docs.rs]
features = ["build_static_librosie"]