mirror of
https://github.com/uutils/coreutils
synced 2024-11-15 17:28:03 +00:00
Update dependencies.
I added the regex-syntax crate to the dependencies for hashsum, nl, and ptx.
This commit is contained in:
parent
b52c395159
commit
cf7db989e7
6 changed files with 6 additions and 3 deletions
|
@ -1 +1 @@
|
||||||
DEPLIBS += regex crypto rand rustc-serialize time
|
DEPLIBS += regex regex-syntax crypto rand rustc-serialize time
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
|
|
||||||
extern crate crypto;
|
extern crate crypto;
|
||||||
extern crate getopts;
|
extern crate getopts;
|
||||||
|
extern crate regex_syntax;
|
||||||
extern crate regex;
|
extern crate regex;
|
||||||
|
|
||||||
use crypto::digest::Digest;
|
use crypto::digest::Digest;
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
DEPLIBS += regex
|
DEPLIBS += regex regex-syntax
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
extern crate getopts;
|
extern crate getopts;
|
||||||
|
extern crate regex_syntax;
|
||||||
extern crate regex;
|
extern crate regex;
|
||||||
|
|
||||||
use std::fs::File;
|
use std::fs::File;
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
DEPLIBS += regex
|
DEPLIBS += regex regex-syntax
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
* file that was distributed with this source code.
|
* file that was distributed with this source code.
|
||||||
*/
|
*/
|
||||||
extern crate getopts;
|
extern crate getopts;
|
||||||
|
extern crate regex_syntax;
|
||||||
extern crate regex;
|
extern crate regex;
|
||||||
|
|
||||||
use std::collections::{HashMap, HashSet, BTreeSet};
|
use std::collections::{HashMap, HashSet, BTreeSet};
|
||||||
|
|
Loading…
Reference in a new issue