rqbit/crates/sha1w/Cargo.toml

22 lines
664 B
TOML
Raw Normal View History

2021-07-03 19:10:59 +01:00
[package]
name = "librqbit-sha1-wrapper"
2025-01-06 15:27:44 +00:00
version = "4.1.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"]
2024-08-30 12:30:08 +01:00
sha1-ring = ["aws-lc-rs"]
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 }
2025-01-06 17:26:19 +00:00
aws-lc-rs = { version = "1.12", optional = true }