Skip to content

Commit 78b46c4

Browse files
committed
chore(deps): add cargo dependency: dashmap
It will be used to create a new torrent repository implementation, using a DashMap for the torrent list. DashMap crate: https://crates.io/crates/dashmap
1 parent af52045 commit 78b46c4

File tree

4 files changed

+18
-0
lines changed

4 files changed

+18
-0
lines changed

Cargo.lock

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

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ clap = { version = "4", features = ["derive", "env"] }
4242
colored = "2"
4343
config = "0"
4444
crossbeam-skiplist = "0.1"
45+
dashmap = "5.5.3"
4546
derive_more = "0"
4647
fern = "0"
4748
futures = "0"

cSpell.json

+1
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@
163163
"Weidendorfer",
164164
"Werror",
165165
"whitespaces",
166+
"Xacrimon",
166167
"XBTT",
167168
"Xdebug",
168169
"Xeon",

packages/torrent-repository/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ version.workspace = true
1717

1818
[dependencies]
1919
crossbeam-skiplist = "0.1"
20+
dashmap = "5.5.3"
2021
futures = "0.3.29"
2122
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
2223
torrust-tracker-clock = { version = "3.0.0-alpha.12-develop", path = "../clock" }

0 commit comments

Comments
 (0)