-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge #1289: Refactor packages: extract
udp-tracker-core
package
1886593 refactor: [#1282] extract udp-tracker-core package (Jose Celano) 84cf581 refactor: [#1282] move BanService to udp-tracker-core package (Jose Celano) Pull request description: Refactor packages: extract `udp-tracker-core` package ACKs for top commit: josecelano: ACK 1886593 Tree-SHA512: 6b960df70f9c7049dd5ea95e4e4abbb470671470a53d54e0a81fdb8fa97d41ca0ac3a313be95d623a03041e6bbddffeea6f2bec83e29263adbaa1dcd4b06a315
- Loading branch information
Showing
50 changed files
with
940 additions
and
230 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
[package] | ||
authors.workspace = true | ||
description = "A library with the core functionality needed to implement a BitTorrent UDP tracker." | ||
documentation.workspace = true | ||
edition.workspace = true | ||
homepage.workspace = true | ||
keywords = ["api", "bittorrent", "core", "library", "tracker"] | ||
license.workspace = true | ||
name = "bittorrent-udp-tracker-core" | ||
publish.workspace = true | ||
readme = "README.md" | ||
repository.workspace = true | ||
rust-version.workspace = true | ||
version.workspace = true | ||
|
||
[dependencies] | ||
aquatic_udp_protocol = "0" | ||
bittorrent-primitives = "0.1.0" | ||
bittorrent-tracker-core = { version = "3.0.0-develop", path = "../tracker-core" } | ||
bittorrent-udp-protocol = { version = "3.0.0-develop", path = "../udp-protocol" } | ||
bloom = "0.3.2" | ||
blowfish = "0" | ||
cipher = "0" | ||
futures = "0" | ||
lazy_static = "1" | ||
rand = "0" | ||
thiserror = "2" | ||
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] } | ||
torrust-tracker-configuration = { version = "3.0.0-develop", path = "../configuration" } | ||
torrust-tracker-primitives = { version = "3.0.0-develop", path = "../primitives" } | ||
tracing = "0" | ||
zerocopy = "0.7" | ||
|
||
[dev-dependencies] | ||
mockall = "0" | ||
torrust-tracker-test-helpers = { version = "3.0.0-develop", path = "../test-helpers" } |
Oops, something went wrong.