diff options
| author | Valerii Hiora <[email protected]> | 2015-01-03 16:42:58 +0200 |
|---|---|---|
| committer | Valerii Hiora <[email protected]> | 2015-01-03 16:42:58 +0200 |
| commit | cf028e971a11f7ab0a5ab2c01daa03d559db1322 (patch) | |
| tree | 7d7d52e3e7542c7cea656ea69e7a05d10c4ab7b4 /src/crypto/hash.rs | |
| parent | Merge pull request #134 from DiamondLovesYou/master (diff) | |
| download | rust-openssl-cf028e971a11f7ab0a5ab2c01daa03d559db1322.tar.xz rust-openssl-cf028e971a11f7ab0a5ab2c01daa03d559db1322.zip | |
Updated to master:
- library stab issues
- deriving -> derive
- {mod} -> {self}
Diffstat (limited to 'src/crypto/hash.rs')
| -rw-r--r-- | src/crypto/hash.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/hash.rs b/src/crypto/hash.rs index 2a181526..a9711e92 100644 --- a/src/crypto/hash.rs +++ b/src/crypto/hash.rs @@ -4,7 +4,7 @@ use std::io; use ffi; -#[deriving(Copy)] +#[derive(Copy)] pub enum HashType { MD5, SHA1, |