1[package]
2name = "regex-lite"
3version = "0.1.6" #:version
4authors = ["The Rust Project Developers", "Andrew Gallant <jamslam@gmail.com>"]
5license = "MIT OR Apache-2.0"
6repository = "https://github.com/rust-lang/regex/tree/master/regex-lite"
7documentation = "https://docs.rs/regex-lite"
8description = """
9A lightweight regex engine that optimizes for binary size and compilation time.
10"""
11workspace = ".."
12edition = "2021"
13rust-version = "1.65"
14autotests = false
15
16# Features are documented in the "Crate features" section of the crate docs:
17# https://docs.rs/regex-lite/*/#crate-features
18#
19# (Currently there are no supported features. 'std' is technically one, but it
20# is currently required.)
21[features]
22default = ["std", "string"]
23std = []
24string = []
25
26[dev-dependencies]
27anyhow = "1.0.69"
28regex-test = { path = "../regex-test", version = "0.1.0" }
29
30[[test]]
31path = "tests/lib.rs"
32name = "integration"
33
34[package.metadata.docs.rs]
35# We want to document all features.
36all-features = true
37