1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-02 05:57:46 +00:00

Upgrade regex cargo.

This commit is contained in:
Joseph Crail 2015-05-29 00:50:32 -04:00
parent eb2247fc1c
commit 1be9c41105
3 changed files with 3 additions and 2 deletions

2
deps/Cargo.toml vendored
View file

@ -10,7 +10,7 @@ libc = "0.1.7"
getopts = "0.2.11" getopts = "0.2.11"
num_cpus = "*" num_cpus = "*"
rand = "0.3.8" rand = "0.3.8"
regex = "0.1.30" regex = "0.1.33"
rust-crypto = "0.2.31" rust-crypto = "0.2.31"
rustc-serialize = "0.3.13" rustc-serialize = "0.3.13"
time = "0.1.25" time = "0.1.25"

View file

@ -15,6 +15,7 @@
extern crate getopts; extern crate getopts;
extern crate libc; extern crate libc;
extern crate regex; extern crate regex;
extern crate regex_syntax;
use getopts::Options; use getopts::Options;
use regex::Regex; use regex::Regex;

View file

@ -1 +1 @@
DEPLIBS += regex DEPLIBS += regex regex-syntax