-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
34 lines (28 loc) · 1.19 KB
/
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
30
31
32
33
[package]
name = "rosie"
version = "0.1.1"
edition = "2018"
authors = ["Luke Peterson <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Interface for the Rosie Pattern Language, for efficient and maintainable text pattern matching and search"
repository = "https://github.com/luketpeterson/rosie-rs/"
readme = "README.md"
homepage = "https://rosie-lang.org/about/"
keywords = ["rosie", "pattern", "matching", "FSA", "regex"]
categories = ["text-processing", "encoding", "parsing"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libc = "0.2.103"
rosie-sys = { version = "1.3.1" }
once_cell = "1.8.0" # As soon as std::sync::SyncLazy is pushed to stable, we will migrate there and eliminate this dependency
linked-hash-map = "0.5.4" #For the LRU cache of compiled expressions
[dev-dependencies]
rand = "0.8.0" # rand for the stress tests
rand_pcg = "0.3.1"
serde = { version = "1.0.125", features = ["derive"] }
serde_json = "1.0.64"
[features]
link_shared_librosie = ["rosie-sys/link_shared_librosie"]
build_static_librosie = ["rosie-sys/build_static_librosie"]
[package.metadata.docs.rs]
features = ["build_static_librosie"]