]> git.proxmox.com Git - rustc.git/blob - src/vendor/regex/Cargo.toml
New upstream version 1.25.0+dfsg1
[rustc.git] / src / vendor / regex / Cargo.toml
1 # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2 #
3 # When uploading crates to the registry Cargo will automatically
4 # "normalize" Cargo.toml files for maximal compatibility
5 # with all versions of Cargo and also rewrite `path` dependencies
6 # to registry (e.g. crates.io) dependencies
7 #
8 # If you believe there's an error in this file please file an
9 # issue against the rust-lang/cargo repository. If you're
10 # editing this file be aware that the upstream Cargo.toml
11 # will likely look very different (and much more reasonable)
12
13 [package]
14 name = "regex"
15 version = "0.2.5"
16 authors = ["The Rust Project Developers"]
17 description = "An implementation of regular expressions for Rust. This implementation uses\nfinite automata and guarantees linear time matching on all inputs.\n"
18 homepage = "https://github.com/rust-lang/regex"
19 documentation = "https://docs.rs/regex"
20 readme = "README.md"
21 categories = ["text-processing"]
22 license = "MIT/Apache-2.0"
23 repository = "https://github.com/rust-lang/regex"
24 [profile.test]
25 debug = true
26
27 [profile.bench]
28 debug = true
29
30 [profile.release]
31 debug = true
32
33 [lib]
34 bench = false
35
36 [[test]]
37 name = "default"
38 path = "tests/test_default.rs"
39
40 [[test]]
41 name = "default-bytes"
42 path = "tests/test_default_bytes.rs"
43
44 [[test]]
45 name = "nfa"
46 path = "tests/test_nfa.rs"
47
48 [[test]]
49 name = "nfa-utf8bytes"
50 path = "tests/test_nfa_utf8bytes.rs"
51
52 [[test]]
53 name = "nfa-bytes"
54 path = "tests/test_nfa_bytes.rs"
55
56 [[test]]
57 name = "backtrack"
58 path = "tests/test_backtrack.rs"
59
60 [[test]]
61 name = "backtrack-utf8bytes"
62 path = "tests/test_backtrack_utf8bytes.rs"
63
64 [[test]]
65 name = "backtrack-bytes"
66 path = "tests/test_backtrack_bytes.rs"
67 [dependencies.aho-corasick]
68 version = "0.6.0"
69
70 [dependencies.memchr]
71 version = "2.0.0"
72
73 [dependencies.regex-syntax]
74 version = "0.4.1"
75
76 [dependencies.simd]
77 version = "0.2.1"
78 optional = true
79
80 [dependencies.thread_local]
81 version = "0.3.2"
82
83 [dependencies.utf8-ranges]
84 version = "1.0.0"
85 [dev-dependencies.lazy_static]
86 version = "1"
87
88 [dev-dependencies.quickcheck]
89 version = "0.6"
90 default-features = false
91
92 [dev-dependencies.rand]
93 version = "0.4"
94
95 [features]
96 pattern = []
97 simd-accel = ["simd"]
98 [badges.appveyor]
99 repository = "rust-lang-libs/regex"
100
101 [badges.travis-ci]
102 repository = "rust-lang/regex"