mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-03-31 17:55:36 +00:00
Move all crates to new crates dir
This commit is contained in:
parent
3835da22ac
commit
9b032f7e24
128 changed files with 27 additions and 26 deletions
33
crates/ws_protocol/Cargo.toml
Normal file
33
crates/ws_protocol/Cargo.toml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
[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
|
||||
readme.workspace = true
|
||||
rust-version.workspace = true
|
||||
|
||||
[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.12"
|
||||
tungstenite = "0.20"
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.5"
|
||||
quickcheck = "1"
|
||||
quickcheck_macros = "1"
|
||||
Loading…
Add table
Add a link
Reference in a new issue