Skip to content

Commit eb428f2

Browse files
committed
various: small updates
1 parent b04d90c commit eb428f2

File tree

10 files changed

+104
-101
lines changed

10 files changed

+104
-101
lines changed

.github/workflows/coverage.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ jobs:
5353

5454
- id: check
5555
name: Run Build Checks
56-
run: cargo check --workspace --all-targets --all-features
56+
run: cargo check --tests --benches --examples --workspace --all-targets --all-features
5757

5858
- id: test
5959
name: Run Unit Tests
60-
run: cargo test --workspace --all-targets --all-features
60+
run: cargo test --tests --benches --examples --workspace --all-targets --all-features
6161

6262
- id: coverage
6363
name: Generate Coverage Report

.github/workflows/labels.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- id: sync
3131
name: Apply Labels from File
32-
uses: EndBug/label-sync@v2
32+
uses: EndBug/label-sync@da00f2c11fdb78e4fae44adac2fdd713778ea3e8
3333
with:
3434
config-file: .github/labels.json
3535
delete-other-labels: true

Cargo.lock

+40-34
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+34-34
Original file line numberDiff line numberDiff line change
@@ -29,47 +29,47 @@ rust-version = "1.72"
2929
version = "3.0.0-alpha.12-develop"
3030

3131
[dependencies]
32-
aquatic_udp_protocol = "0.8"
33-
async-trait = "0.1"
34-
axum = "0.6"
35-
axum-client-ip = "0.4"
36-
axum-server = { version = "0.5", features = ["tls-rustls"] }
37-
binascii = "0.1"
38-
chrono = { version = "0.4", default-features = false, features = ["clock"] }
39-
config = "0.13"
40-
derive_more = "0.99"
41-
fern = "0.6"
42-
futures = "0.3"
43-
hyper = "0.14"
44-
lazy_static = "1.4"
45-
log = { version = "0.4", features = ["release_max_level_info"] }
46-
multimap = "0.9"
47-
openssl = { version = "0.10", features = ["vendored"] }
48-
percent-encoding = "2.2"
49-
r2d2 = "0.8"
50-
r2d2_mysql = "24.0"
51-
r2d2_sqlite = { version = "0.22", features = ["bundled"] }
52-
rand = "0.8"
53-
serde = { version = "1.0", features = ["derive"] }
54-
serde_bencode = "^0.2"
55-
serde_json = "1.0"
56-
serde_with = "3.2"
57-
thiserror = "1.0"
58-
tokio = { version = "1.29", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
32+
aquatic_udp_protocol = "0"
33+
async-trait = "0"
34+
axum = "0"
35+
axum-client-ip = "0"
36+
axum-server = { version = "0", features = ["tls-rustls"] }
37+
binascii = "0"
38+
chrono = { version = "0", default-features = false, features = ["clock"] }
39+
config = "0"
40+
derive_more = "0"
41+
fern = "0"
42+
futures = "0"
43+
hyper = "0"
44+
lazy_static = "1"
45+
log = { version = "0", features = ["release_max_level_info"] }
46+
multimap = "0"
47+
openssl = { version = "0", features = ["vendored"] }
48+
percent-encoding = "2"
49+
r2d2 = "0"
50+
r2d2_mysql = "24"
51+
r2d2_sqlite = { version = "0", features = ["bundled"] }
52+
rand = "0"
53+
serde = { version = "1", features = ["derive"] }
54+
serde_bencode = "0"
55+
serde_json = "1"
56+
serde_with = "3"
57+
thiserror = "1"
58+
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
5959
torrust-tracker-configuration = { version = "3.0.0-alpha.12-develop", path = "packages/configuration" }
6060
torrust-tracker-contrib-bencode = { version = "3.0.0-alpha.12-develop", path = "contrib/bencode" }
6161
torrust-tracker-located-error = { version = "3.0.0-alpha.12-develop", path = "packages/located-error" }
6262
torrust-tracker-primitives = { version = "3.0.0-alpha.12-develop", path = "packages/primitives" }
63-
tower-http = { version = "0.4", features = ["compression-full"] }
63+
tower-http = { version = "0", features = ["compression-full"] }
6464
uuid = { version = "1", features = ["v4"] }
6565

6666
[dev-dependencies]
67-
local-ip-address = "0.5"
68-
mockall = "0.11"
69-
reqwest = { version = "0.11.18", features = ["json"] }
70-
serde_bytes = "0.11"
71-
serde_repr = "0.1"
72-
serde_urlencoded = "0.7"
67+
local-ip-address = "0"
68+
mockall = "0"
69+
reqwest = { version = "0", features = ["json"] }
70+
serde_bytes = "0"
71+
serde_repr = "0"
72+
serde_urlencoded = "0"
7373
torrust-tracker-test-helpers = { version = "3.0.0-alpha.12-develop", path = "packages/test-helpers" }
7474

7575
[workspace]

0 commit comments

Comments
 (0)