blob: 6ba3db5da1288ccc2329e8ce4dd811ea6bf7683b [file] [log] [blame]
Chih-Hung Hsiehe42c5052020-04-16 10:44:21 -07001name: "regex"
2description: "A Rust library for parsing, compiling, and executing regular expressions. Its syntax is similar to Perl-style regular expressions, but lacks a few features like look around and backreferences. In exchange, all searches execute in linear time with respect to the size of the regular expression and search text. Much of the syntax and implementation is inspired by RE2."
3third_party {
4 url {
5 type: HOMEPAGE
6 value: "https://crates.io/crates/regex"
7 }
8 url {
Chih-Hung Hsiehdb8096e2020-08-25 20:49:26 -07009 type: ARCHIVE
10 value: "https://static.crates.io/crates/regex/regex-1.3.9.crate"
Chih-Hung Hsiehe42c5052020-04-16 10:44:21 -070011 }
Haibo Huang49cbe5f2020-05-28 20:14:24 -070012 version: "1.3.9"
Chih-Hung Hsiehe42c5052020-04-16 10:44:21 -070013 license_type: NOTICE
14 last_upgrade_date {
15 year: 2020
Haibo Huang49cbe5f2020-05-28 20:14:24 -070016 month: 5
17 day: 28
Chih-Hung Hsiehe42c5052020-04-16 10:44:21 -070018 }
19}