diff options
| author | Steven Fackler <[email protected]> | 2014-02-13 19:31:39 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-02-13 19:31:39 -0800 |
| commit | 3acd8f8de95cdc386924aa0fadd55ea58008f961 (patch) | |
| tree | 304907f7abd629770d21dcec6a046b945102e00a /crypto/hash.rs | |
| parent | Make Makefile variables early evaluated (diff) | |
| download | rust-openssl-3acd8f8de95cdc386924aa0fadd55ea58008f961.tar.xz rust-openssl-3acd8f8de95cdc386924aa0fadd55ea58008f961.zip | |
Update for hex move
Diffstat (limited to 'crypto/hash.rs')
| -rw-r--r-- | crypto/hash.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/hash.rs b/crypto/hash.rs index cb606d66..9a1a078a 100644 --- a/crypto/hash.rs +++ b/crypto/hash.rs @@ -105,7 +105,7 @@ pub fn hash(t: HashType, data: &[u8]) -> ~[u8] { #[cfg(test)] mod tests { - use extra::hex::{FromHex, ToHex}; + use serialize::hex::{FromHex, ToHex}; struct HashTest { input: ~[u8], |