-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 827 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 827 Bytes
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
[package]
description = "Peer ID parsing and client identification primitives for BitTorrent crates."
keywords = [ "bittorrent", "library", "peer-id", "primitives" ]
name = "bittorrent-peer-id"
readme = "README.md"
authors.workspace = true
documentation.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
publish.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true
[features]
default = [ "serde" ]
quickcheck = [ "dep:quickcheck" ]
serde = [ "dep:serde" ]
zerocopy = [ "dep:zerocopy" ]
[dependencies]
compact_str = "0.9"
hex = "0.4"
quickcheck = { version = "1", optional = true }
regex = "1"
serde = { version = "1", features = [ "derive" ], optional = true }
zerocopy = { version = "0.8", features = [ "derive" ], optional = true }