rqbit/crates/bencode/Cargo.toml

19 lines
665 B
TOML
Raw Normal View History

2021-07-03 19:10:59 +01:00
[package]
name = "librqbit-bencode"
version = "2.2.1"
2021-07-03 19:10:59 +01:00
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["sha1-system"]
sha1-system = ["sha1w/sha1-system"]
sha1-openssl = ["sha1w/sha1-openssl"]
sha1-rust = ["sha1w/sha1-rust"]
2021-07-03 19:10:59 +01:00
[dependencies]
serde = {version = "1", features=["derive"]}
2023-11-15 13:48:50 +00:00
buffers = {path = "../buffers", package="librqbit-buffers", version = "2.2.1"}
2023-11-15 13:47:26 +00:00
clone_to_owned = {path = "../clone_to_owned", package="librqbit-clone-to-owned", version = "2.2.1"}
2021-07-03 19:10:59 +01:00
anyhow = "1"
sha1w = {path="../sha1w", default-features=false, package="librqbit-sha1-wrapper", version="2.2.1"}