Skip to content

Commit 0907e5b

Browse files
committed
Revert cargo package changes
Signed-off-by: koushiro <koushiro.cqx@gmail.com>
1 parent 52f4fd1 commit 0907e5b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "multihash"
3+
description = "Implementation of the multihash format"
4+
repository = "https://github.com/multiformats/rust-multihash"
5+
keywords = ["multihash", "ipfs"]
36
version = "0.9.4"
47
authors = ["dignifiedquire <dignifiedquire@gmail.com>"]
5-
edition = "2018"
68
license = "MIT"
79
readme = "README.md"
8-
description = "Implementation of the multihash format"
910
documentation = "https://docs.rs/multihash/"
10-
repository = "https://github.com/multiformats/rust-multihash"
11-
keywords = ["multihash", "ipfs"]
11+
edition = "2018"
1212

1313
[dependencies]
1414
blake2b_simd = { version = "0.5.9", default-features = false }

src/hashes.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use digest::Digest;
55
use crate::digests::{wrap, Multihash, MultihashDigest};
66

77
/// The code of Multihash.
8-
#[derive(Clone, Copy, Debug, PartialEq)]
8+
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
99
pub enum Code {
1010
/// Identity (Raw binary )
1111
Identity,
@@ -162,7 +162,7 @@ impl Sha1 {
162162
}
163163
}
164164

165-
/// THe Sha2-256 hasher.
165+
/// The Sha2-256 hasher.
166166
#[derive(Clone, Debug)]
167167
pub struct Sha2_256;
168168
impl MultihashDigest for Sha2_256 {

0 commit comments

Comments
 (0)