Skip to content

Commit f4844df

Browse files
committed
Update for Rust syntax changes
extern crate foo = "bar"; is now extern crate "bar" as foo; as per RFC 47. Details at rust-lang/rust#16461
1 parent 12b15e8 commit f4844df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rust-crypto-util/tool.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#![crate_name = "rust-crypto-util"]
99

1010
extern crate getopts;
11-
extern crate rust_crypto = "rust-crypto";
11+
extern crate "rust-crypto" as rust_crypto;
1212

1313
use std::io;
1414
use std::os;

0 commit comments

Comments
 (0)