-
Notifications
You must be signed in to change notification settings - Fork 35
/
Cargo.toml
38 lines (32 loc) · 899 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
[package]
name = "aquatic_ws_protocol"
description = "WebTorrent tracker protocol"
exclude = ["target"]
keywords = ["webtorrent", "protocol", "peer-to-peer", "torrent", "bittorrent"]
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
readme = "./README.md"
[features]
default = ["tungstenite"]
tungstenite = ["dep:tungstenite"]
[lib]
name = "aquatic_ws_protocol"
[[bench]]
name = "bench_deserialize_announce_request"
path = "benches/bench_deserialize_announce_request.rs"
harness = false
[dependencies]
anyhow = "1"
hashbrown = { version = "0.14", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
simd-json = "0.13"
tungstenite = { version = "0.21", optional = true }
[dev-dependencies]
criterion = "0.5"
quickcheck = "1"
quickcheck_macros = "1"