Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Check the
ran successfully and the following crates were published:

- `torrust-tracker-contrib-bencode`
- `torrust-tracker-located-error`
- `torrust-located-error`
- `torrust-tracker-primitives`
- `torrust-clock`
- `torrust-tracker-configuration`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ For errors that benefit from source location tracking, use the `located-error` p

```toml
[dependencies]
torrust-tracker-located-error = { workspace = true }
torrust-located-error = { version = "3.0.0-develop", path = "../located-error" }
```

```rust
use torrust_tracker_located_error::Located;
use torrust_located_error::Located;

// Wraps any error with file and line information
let err = Located(my_error).into();
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ jobs:
env:
CARGO_REGISTRY_TOKEN: "${{ secrets.TORRUST_UPDATE_CARGO_REGISTRY_TOKEN }}"
run: |
cargo publish -p torrust-located-error
cargo publish -p bittorrent-http-tracker-core
cargo publish -p bittorrent-http-tracker-protocol
cargo publish -p bittorrent-tracker-client
Expand All @@ -74,7 +75,6 @@ jobs:
cargo publish -p torrust-tracker-configuration
cargo publish -p torrust-tracker-contrib-bencode
cargo publish -p torrust-tracker-events
cargo publish -p torrust-tracker-located-error
cargo publish -p torrust-tracker-metrics
cargo publish -p torrust-tracker-primitives
cargo publish -p torrust-tracker-swarm-coordination-registry
Expand Down
4 changes: 2 additions & 2 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ All packages live under `packages/`. The workspace version is `3.0.0-develop`.
| `axum-http-tracker-server` | `torrust-tracker-axum-http-server` | `axum-*` | BitTorrent HTTP tracker server (BEP 3/23) |
| `axum-rest-tracker-api-server` | `torrust-tracker-axum-rest-api-server` | `axum-*` | Management REST API server |
| `axum-server` | `torrust-tracker-axum-server` | `axum-*` | Base Axum HTTP server infrastructure |
| `clock` | `torrust-clock` | utilities | Mockable time source for deterministic testing |
| `clock` | `torrust-clock` | utilities | Mockable time source for deterministic testing |
| `configuration` | `torrust-tracker-configuration` | domain | Config file parsing, environment variables |
| `events` | `torrust-tracker-events` | domain | Domain event definitions |
| `http-protocol` | `bittorrent-http-tracker-protocol` | `*-protocol` | HTTP tracker protocol (BEP 3/23) parsing |
| `http-tracker-core` | `bittorrent-http-tracker-core` | `*-core` | HTTP-specific tracker domain logic |
| `located-error` | `torrust-tracker-located-error` | utilities | Diagnostic errors with source locations |
| `located-error` | `torrust-located-error` | utilities | Diagnostic errors with source locations |
| `metrics` | `torrust-metrics` | domain | Prometheus metrics integration |
| `peer-id` | `bittorrent-peer-id` | domain | Peer ID parsing and formatting utilities |
| `primitives` | `torrust-tracker-primitives` | domain | Core domain types (InfoHash, PeerId, ...) |
Expand Down
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading