forked from multiformats/rust-multihash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "multihash"
description = "Implementation of the multihash format"
repository = "https://github.com/multiformats/rust-multihash"
keywords = ["multihash", "ipfs"]
version = "0.11.2"
authors = ["dignifiedquire <dignifiedquire@gmail.com>"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/multihash/"
edition = "2018"
[dependencies]
blake2b_simd = { version = "0.5.9", default-features = false }
blake2s_simd = { version = "0.5.9", default-features = false }
blake3 = { version = "0.3.5", default-features = false }
digest = { version = "0.9", default-features = false }
sha-1 = { version = "0.9", default-features = false }
sha2 = { version = "0.9", default-features = false }
sha3 = { version = "0.9", default-features = false }
unsigned-varint = "0.4"
quickcheck = { version = "0.9.2", optional = true }
rand = { version = "0.7.3", optional = true }
[dev-dependencies]
criterion = "0.3"
hex = "0.4.2"
quickcheck = "0.9.2"
rand = "0.7.3"
[features]
test = ["quickcheck", "rand"]
[[bench]]
name = "multihash"
harness = false