-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (43 loc) · 1.6 KB
/
Cargo.toml
File metadata and controls
49 lines (43 loc) · 1.6 KB
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
44
45
46
47
48
49
[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 = "2024"
include = [
"src/**/*.rs",
"Cargo.toml",
"CHANGELOG.md",
"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"
rust-version = "1.85.0"
version = "0.0.5-alpha.3"
[features]
default = ["std"]
std = ["bt_bencode/std", "gen_value/std", "serde/std", "serde_bytes/std", "bytes/std", "bitvec/std", "bitvec/atomic", "rand/std", "rand/std_rng", "rand/thread_rng" ]
alloc = ["bt_bencode/alloc", "gen_value/alloc", "serde/alloc", "serde_bytes/alloc", "bitvec/alloc", "bitvec/atomic", "rand/alloc", "rand/thread_rng" ]
[dependencies]
bitvec = { version = "1.0", default-features = false }
bt_bencode = { version = "0.8", default-features = false }
bytes = { version = "1.1", default-features = false }
crc32c = "0.6"
gen_value = { version = "0.7", default-features = false }
rand = { version = "0.10", default-features = false }
serde = { version = "1.0", default-features = false }
serde_bytes = { version = "0.11", default-features = false }
serde_derive = { version = "1.0" }
sha-1 = { version = "0.10", default-features = false }
thiserror = "2.0"
[dev-dependencies]
hex-literal = "1.0.0"
proptest = "1.3.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]