Skip to content

Commit

Permalink
toml: use major versions
Browse files Browse the repository at this point in the history
  • Loading branch information
da2ce7 committed Jul 13, 2024
1 parent d3cb8d0 commit 7f867d6
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 26 deletions.
26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,29 +36,29 @@ axum = { version = "0", features = ["macros"] }
axum-client-ip = "0"
axum-extra = { version = "0", features = ["query"] }
axum-server = { version = "0", features = ["tls-rustls"] }
camino = { version = "1.1.6", features = ["serde", "serde1"] }
camino = { version = "1", features = ["serde", "serde1"] }
chrono = { version = "0", default-features = false, features = ["clock"] }
clap = { version = "4", features = ["derive", "env"] }
crossbeam-skiplist = "0.1"
dashmap = "5.5.3"
crossbeam-skiplist = "0"
dashmap = "5"
derive_more = "0"
figment = "0.10.18"
figment = "0"
futures = "0"
futures-util = "0.3.30"
futures-util = "0"
hex-literal = "0"
http-body = "1.0.0"
http-body = "1"
hyper = "1"
hyper-util = { version = "0.1.3", features = ["http1", "http2", "tokio"] }
hyper-util = { version = "0", features = ["http1", "http2", "tokio"] }
lazy_static = "1"
multimap = "0"
parking_lot = "0.12.1"
parking_lot = "0"
percent-encoding = "2"
pin-project-lite = "0.2.14"
pin-project-lite = "0"
r2d2 = "0"
r2d2_mysql = "24"
r2d2_sqlite = { version = "0", features = ["bundled"] }
rand = "0"
regex = "1.10.5"
regex = "1"
reqwest = { version = "0", features = ["json"] }
ringbuf = "0"
serde = { version = "1", features = ["derive"] }
Expand All @@ -74,14 +74,14 @@ torrust-tracker-contrib-bencode = { version = "3.0.0-alpha.12-develop", path = "
torrust-tracker-located-error = { version = "3.0.0-alpha.12-develop", path = "packages/located-error" }
torrust-tracker-primitives = { version = "3.0.0-alpha.12-develop", path = "packages/primitives" }
torrust-tracker-torrent-repository = { version = "3.0.0-alpha.12-develop", path = "packages/torrent-repository" }
tower = { version = "0.4.13", features = ["timeout"] }
tower = { version = "0", features = ["timeout"] }
tower-http = { version = "0", features = ["compression-full", "cors", "propagate-header", "request-id", "trace"] }
trace = "0"
tracing = "0"
tracing-subscriber = { version = "0.3.18", features = ["json"] }
tracing-subscriber = { version = "0", features = ["json"] }
url = { version = "2", features = ["serde"] }
uuid = { version = "1", features = ["v4"] }
zerocopy = "0.7.33"
zerocopy = "0"

[package.metadata.cargo-machete]
ignored = ["crossbeam-skiplist", "dashmap", "figment", "parking_lot", "serde_bytes"]
Expand Down
4 changes: 2 additions & 2 deletions packages/clock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
description = "A library to a clock for the torrust tracker."
keywords = ["library", "clock", "torrents"]
keywords = ["clock", "library", "torrents"]
name = "torrust-tracker-clock"
readme = "README.md"

Expand All @@ -16,8 +16,8 @@ rust-version.workspace = true
version.workspace = true

[dependencies]
lazy_static = "1"
chrono = { version = "0", default-features = false, features = ["clock"] }
lazy_static = "1"

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

Expand Down
6 changes: 3 additions & 3 deletions packages/configuration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ rust-version.workspace = true
version.workspace = true

[dependencies]
camino = { version = "1.1.6", features = ["serde", "serde1"] }
camino = { version = "1", features = ["serde", "serde1"] }
derive_more = "0"
figment = { version = "0.10.18", features = ["env", "test", "toml"] }
figment = { version = "0", features = ["env", "test", "toml"] }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }
serde_with = "3"
thiserror = "1"
toml = "0"
torrust-tracker-located-error = { version = "3.0.0-alpha.12-develop", path = "../located-error" }
url = "2.5.2"
url = "2"

[dev-dependencies]
uuid = { version = "1", features = ["v4"] }
2 changes: 1 addition & 1 deletion packages/located-error/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ rust-version.workspace = true
version.workspace = true

[dependencies]
tracing = "0.1.40"
tracing = "0"

[dev-dependencies]
thiserror = "1"
6 changes: 3 additions & 3 deletions packages/primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ rust-version.workspace = true
version.workspace = true

[dependencies]
derive_more = "0"
thiserror = "1"
binascii = "0"
derive_more = "0"
serde = { version = "1", features = ["derive"] }
tdyne-peer-id = "1"
tdyne-peer-id-registry = "0"
tdyne-peer-id-registry = "0"
thiserror = "1"
8 changes: 4 additions & 4 deletions packages/torrent-repository/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ rust-version.workspace = true
version.workspace = true

[dependencies]
crossbeam-skiplist = "0.1"
dashmap = "5.5.3"
futures = "0.3.29"
parking_lot = "0.12.1"
crossbeam-skiplist = "0"
dashmap = "5"
futures = "0"
parking_lot = "0"
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
torrust-tracker-clock = { version = "3.0.0-alpha.12-develop", path = "../clock" }
torrust-tracker-configuration = { version = "3.0.0-alpha.12-develop", path = "../configuration" }
Expand Down

0 comments on commit 7f867d6

Please sign in to comment.