cloudburst 0.0.1

A library to help with the implementation of torrent based protocols and algorithms.
Documentation
[dependencies.bitvec]
default-features = false
version = "1.0"

[dependencies.bt_bencode]
default-features = false
version = "0.6"

[dependencies.bytes]
default-features = false
version = "1.1"

[dependencies.serde]
default-features = false
version = "1.0"

[dependencies.serde_bytes]
default-features = false
version = "0.11"

[dependencies.serde_derive]
version = "1.0"

[dependencies.sha-1]
default-features = false
version = "0.10"

[dependencies.thiserror]
version = "1.0"

[features]
alloc = ["bt_bencode/alloc", "serde/alloc", "serde_bytes/alloc", "bitvec/alloc", "bitvec/atomic"]
default = ["std"]
std = ["bt_bencode/std", "serde/std", "serde_bytes/std", "bytes/std", "bitvec/std", "bitvec/atomic"]

[package]
authors = ["Bryant Luk <code@bryantluk.com>"]
categories = ["network-programming"]
description = "A library to help with the implementation of torrent based protocols and algorithms."
documentation = "https://docs.rs/cloudburst/"
edition = "2021"
include = ["src/**/*.rs", "Cargo.toml", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
keywords = ["bittorrent", "torrent", "protocol", "p2p", "distributed"]
license = "MIT OR Apache-2.0"
name = "cloudburst"
readme = "README.md"
repository = "https://github.com/bluk/cloudburst"
resolver = "2"
version = "0.0.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]