-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
28 lines (25 loc) · 842 Bytes
/
Cargo.toml
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
[package]
name = "ezcheck"
version = "0.1.1"
edition = "2021"
description = "An easy tool to calculate and check hash."
repository = "https://github.com/Metaphorme/ezcheck"
documentation = "https://docs.rs/ezcheck"
readme = "README.md"
authors = ["Heqi Liu [email protected]"]
license-file = "LICENSE"
# MSRV
rust-version = "1.71.0"
[dependencies]
md2 = { version = "0.10", optional = true }
md4 = { version = "0.10", optional = true }
md-5 = { version = "0.10", optional = true }
sha1 = { version = "0.10", optional = true }
sha2 = { version = "0.10", optional = true }
digest = { version = "0.10", optional = true }
ring = { version = "0.17" , optional = true }
clap = { version = "4.5", features = ["derive"]}
[features]
default = ["hashes_backend"]
hashes_backend = ["md2", "md4", "md-5", "sha1", "sha2", "digest"]
ring_backend = ["ring"]