rqbit/crates/sha1w/Cargo.toml

22 lines
654 B
TOML
Raw Normal View History

2021-07-03 19:10:59 +01:00
[package]
name = "librqbit-sha1-wrapper"
2024-08-27 17:25:56 +01:00
version = "4.0.0"
2021-07-03 19:10:59 +01:00
edition = "2018"
2023-11-15 14:10:04 +00:00
description = "Common interface around various sha1 implementations used in rqbit torrent client."
license = "Apache-2.0"
documentation = "https://docs.rs/librqbit-sha1-wrapper"
2023-11-15 14:11:51 +00:00
repository = "https://github.com/ikatson/rqbit"
2023-11-15 14:10:04 +00:00
readme = "README.md"
2021-07-03 19:10:59 +01:00
2024-08-27 15:11:34 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html#
[features]
default = ["sha1-crypto-hash"]
sha1-crypto-hash = ["crypto-hash"]
sha1-ring = ["ring"]
2021-07-03 19:10:59 +01:00
[dependencies]
assert_cfg = "0.1.0"
2024-08-27 15:11:34 +01:00
crypto-hash = { version = "0.3", optional = true }
ring = { version = "0.17", optional = true }