Skip to content

Commit 7f867d6

Browse files
committed
toml: use major versions
1 parent d3cb8d0 commit 7f867d6

File tree

6 files changed

+26
-26
lines changed

6 files changed

+26
-26
lines changed

Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -36,29 +36,29 @@ axum = { version = "0", features = ["macros"] }
3636
axum-client-ip = "0"
3737
axum-extra = { version = "0", features = ["query"] }
3838
axum-server = { version = "0", features = ["tls-rustls"] }
39-
camino = { version = "1.1.6", features = ["serde", "serde1"] }
39+
camino = { version = "1", features = ["serde", "serde1"] }
4040
chrono = { version = "0", default-features = false, features = ["clock"] }
4141
clap = { version = "4", features = ["derive", "env"] }
42-
crossbeam-skiplist = "0.1"
43-
dashmap = "5.5.3"
42+
crossbeam-skiplist = "0"
43+
dashmap = "5"
4444
derive_more = "0"
45-
figment = "0.10.18"
45+
figment = "0"
4646
futures = "0"
47-
futures-util = "0.3.30"
47+
futures-util = "0"
4848
hex-literal = "0"
49-
http-body = "1.0.0"
49+
http-body = "1"
5050
hyper = "1"
51-
hyper-util = { version = "0.1.3", features = ["http1", "http2", "tokio"] }
51+
hyper-util = { version = "0", features = ["http1", "http2", "tokio"] }
5252
lazy_static = "1"
5353
multimap = "0"
54-
parking_lot = "0.12.1"
54+
parking_lot = "0"
5555
percent-encoding = "2"
56-
pin-project-lite = "0.2.14"
56+
pin-project-lite = "0"
5757
r2d2 = "0"
5858
r2d2_mysql = "24"
5959
r2d2_sqlite = { version = "0", features = ["bundled"] }
6060
rand = "0"
61-
regex = "1.10.5"
61+
regex = "1"
6262
reqwest = { version = "0", features = ["json"] }
6363
ringbuf = "0"
6464
serde = { version = "1", features = ["derive"] }
@@ -74,14 +74,14 @@ torrust-tracker-contrib-bencode = { version = "3.0.0-alpha.12-develop", path = "
7474
torrust-tracker-located-error = { version = "3.0.0-alpha.12-develop", path = "packages/located-error" }
7575
torrust-tracker-primitives = { version = "3.0.0-alpha.12-develop", path = "packages/primitives" }
7676
torrust-tracker-torrent-repository = { version = "3.0.0-alpha.12-develop", path = "packages/torrent-repository" }
77-
tower = { version = "0.4.13", features = ["timeout"] }
77+
tower = { version = "0", features = ["timeout"] }
7878
tower-http = { version = "0", features = ["compression-full", "cors", "propagate-header", "request-id", "trace"] }
7979
trace = "0"
8080
tracing = "0"
81-
tracing-subscriber = { version = "0.3.18", features = ["json"] }
81+
tracing-subscriber = { version = "0", features = ["json"] }
8282
url = { version = "2", features = ["serde"] }
8383
uuid = { version = "1", features = ["v4"] }
84-
zerocopy = "0.7.33"
84+
zerocopy = "0"
8585

8686
[package.metadata.cargo-machete]
8787
ignored = ["crossbeam-skiplist", "dashmap", "figment", "parking_lot", "serde_bytes"]

packages/clock/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
description = "A library to a clock for the torrust tracker."
3-
keywords = ["library", "clock", "torrents"]
3+
keywords = ["clock", "library", "torrents"]
44
name = "torrust-tracker-clock"
55
readme = "README.md"
66

@@ -16,8 +16,8 @@ rust-version.workspace = true
1616
version.workspace = true
1717

1818
[dependencies]
19-
lazy_static = "1"
2019
chrono = { version = "0", default-features = false, features = ["clock"] }
20+
lazy_static = "1"
2121

2222
torrust-tracker-primitives = { version = "3.0.0-alpha.12-develop", path = "../primitives" }
2323

packages/configuration/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ rust-version.workspace = true
1515
version.workspace = true
1616

1717
[dependencies]
18-
camino = { version = "1.1.6", features = ["serde", "serde1"] }
18+
camino = { version = "1", features = ["serde", "serde1"] }
1919
derive_more = "0"
20-
figment = { version = "0.10.18", features = ["env", "test", "toml"] }
20+
figment = { version = "0", features = ["env", "test", "toml"] }
2121
serde = { version = "1", features = ["derive"] }
2222
serde_json = { version = "1", features = ["preserve_order"] }
2323
serde_with = "3"
2424
thiserror = "1"
2525
toml = "0"
2626
torrust-tracker-located-error = { version = "3.0.0-alpha.12-develop", path = "../located-error" }
27-
url = "2.5.2"
27+
url = "2"
2828

2929
[dev-dependencies]
3030
uuid = { version = "1", features = ["v4"] }

packages/located-error/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ rust-version.workspace = true
1515
version.workspace = true
1616

1717
[dependencies]
18-
tracing = "0.1.40"
18+
tracing = "0"
1919

2020
[dev-dependencies]
2121
thiserror = "1"

packages/primitives/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ rust-version.workspace = true
1515
version.workspace = true
1616

1717
[dependencies]
18-
derive_more = "0"
19-
thiserror = "1"
2018
binascii = "0"
19+
derive_more = "0"
2120
serde = { version = "1", features = ["derive"] }
2221
tdyne-peer-id = "1"
23-
tdyne-peer-id-registry = "0"
22+
tdyne-peer-id-registry = "0"
23+
thiserror = "1"

packages/torrent-repository/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ rust-version.workspace = true
1616
version.workspace = true
1717

1818
[dependencies]
19-
crossbeam-skiplist = "0.1"
20-
dashmap = "5.5.3"
21-
futures = "0.3.29"
22-
parking_lot = "0.12.1"
19+
crossbeam-skiplist = "0"
20+
dashmap = "5"
21+
futures = "0"
22+
parking_lot = "0"
2323
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
2424
torrust-tracker-clock = { version = "3.0.0-alpha.12-develop", path = "../clock" }
2525
torrust-tracker-configuration = { version = "3.0.0-alpha.12-develop", path = "../configuration" }

0 commit comments

Comments
 (0)