1 | [package] |
2 | name = "regex-lite" |
3 | version = "0.1.6" #:version |
4 | authors = ["The Rust Project Developers" , "Andrew Gallant <jamslam@gmail.com>" ] |
5 | license = "MIT OR Apache-2.0" |
6 | repository = "https://github.com/rust-lang/regex/tree/master/regex-lite" |
7 | documentation = "https://docs.rs/regex-lite" |
8 | description = "" " |
9 | A lightweight regex engine that optimizes for binary size and compilation time. |
10 | " "" |
11 | workspace = ".." |
12 | edition = "2021" |
13 | rust-version = "1.65" |
14 | autotests = 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] |
22 | default = ["std" , "string" ] |
23 | std = [] |
24 | string = [] |
25 | |
26 | [dev-dependencies] |
27 | anyhow = "1.0.69" |
28 | regex-test = { path = "../regex-test" , version = "0.1.0" } |
29 | |
30 | [[test]] |
31 | path = "tests/lib.rs" |
32 | name = "integration" |
33 | |
34 | [package.metadata.docs.rs] |
35 | # We want to document all features. |
36 | all-features = true |
37 | |