-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
43 lines (37 loc) · 960 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
authors = ["Bryant Luk <code@bryantluk.com>"]
categories = ["encoding", "no-std"]
description = "A Bencode encoding/decoding implementation."
documentation = "https://docs.rs/bt_bencode/"
edition = "2018"
include = [
"/src",
"/tests",
"/Cargo.toml",
"/CHANGELOG.md",
"/clippy.toml",
"/deny.toml",
"/LICENSE-APACHE",
"/LICENSE-MIT",
"/README.md",
]
keywords = ["bencode", "bittorrent", "torrent", "serialization", "serde"]
license = "MIT OR Apache-2.0"
name = "bt_bencode"
readme = "README.md"
repository = "https://github.com/bluk/bt_bencode"
rust-version = "1.36.0"
version = "0.8.1"
[dependencies]
itoa = {version = "1.0.0", default-features = false }
serde = {version = "1.0.100", default-features = false }
[dev-dependencies]
serde_derive = "1.0.100"
sha1 = "0.10.1"
[features]
default = ["std"]
std = ["serde/std"]
alloc = ["serde/alloc"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]