bt_bencode 0.7.0

A Bencode encoding/decoding implementation.
Documentation
[package]
name = "bt_bencode"
version = "0.7.0"
license = "MIT OR Apache-2.0"
authors = ["Bryant Luk <code@bryantluk.com>"]
edition = "2018"
description = "A Bencode encoding/decoding implementation."
repository = "https://github.com/bluk/bt_bencode"
documentation = "https://docs.rs/bt_bencode/"
readme = "README.md"
include = [
  "src/**/*.rs",
  "Cargo.toml",
  "README.md",
  "LICENSE-APACHE",
  "LICENSE-MIT",
]
keywords = ["bencode", "bittorrent", "torrent", "serialization", "serde"]
categories = ["encoding", "no-std"]
rust-version = "1.36.0"

[dependencies]
serde = {version = "1", default-features = false }
serde_bytes = { version = "0.11", default-features = false }
itoa = {version = "1", default-features = false }

[dev-dependencies]
serde_derive = "1"
sha1 = "0.10.1"

[features]
default = ["std"]

std = ["serde/std", "serde_bytes/std"]

alloc = ["serde/alloc", "serde_bytes/alloc"]

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]