-
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 #1292: Refactor packages: extract
tracker-api-core
package
97d2629 refactor: [#1280] extract tracker-api-core package (Jose Celano) Pull request description: Refactor packages: extract `tracker-api-core` package ACKs for top commit: josecelano: ACK 97d2629 Tree-SHA512: dc839f1a0adf78f33a213d17f40ad6af097558d23aef7dcf5260fa689c3cf7572b05f137992e220d53ce816ec017e80def9035b5ab7a908164df54682f4763b2
- Loading branch information
Showing
16 changed files
with
724 additions
and
19 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,25 @@ | ||
[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 = "torrust-tracker-api-core" | ||
publish.workspace = true | ||
readme = "README.md" | ||
repository.workspace = true | ||
rust-version.workspace = true | ||
version.workspace = true | ||
|
||
[dependencies] | ||
bittorrent-http-tracker-core = { version = "3.0.0-develop", path = "../http-tracker-core" } | ||
bittorrent-tracker-core = { version = "3.0.0-develop", path = "../tracker-core" } | ||
bittorrent-udp-tracker-core = { version = "3.0.0-develop", path = "../udp-tracker-core" } | ||
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" } | ||
|
||
[dev-dependencies] | ||
torrust-tracker-test-helpers = { version = "3.0.0-develop", path = "../test-helpers" } |
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# BitTorrent UDP Tracker Core library | ||
|
||
A library with the core functionality needed to implement the Torrust Tracker API | ||
|
||
## Documentation | ||
|
||
[Crate documentation](https://docs.rs/torrust-tracker-api-core). | ||
|
||
## License | ||
|
||
The project is licensed under the terms of the [GNU AFFERO GENERAL PUBLIC LICENSE](./LICENSE). |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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 was deleted.
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
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