Update dependencies.

I added the regex-syntax crate to the dependencies for hashsum, nl, and
ptx.
This commit is contained in:
Joseph Crail 2015-06-04 22:26:13 -04:00
parent b52c395159
commit cf7db989e7
6 changed files with 6 additions and 3 deletions

View file

@ -1 +1 @@
DEPLIBS += regex crypto rand rustc-serialize time
DEPLIBS += regex regex-syntax crypto rand rustc-serialize time

View file

@ -13,6 +13,7 @@
extern crate crypto;
extern crate getopts;
extern crate regex_syntax;
extern crate regex;
use crypto::digest::Digest;

View file

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

View file

@ -12,6 +12,7 @@
*/
extern crate getopts;
extern crate regex_syntax;
extern crate regex;
use std::fs::File;

View file

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

View file

@ -10,6 +10,7 @@
* file that was distributed with this source code.
*/
extern crate getopts;
extern crate regex_syntax;
extern crate regex;
use std::collections::{HashMap, HashSet, BTreeSet};