aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2025-07-10 20:05:11 +0100
committerdiogo464 <[email protected]>2025-07-10 20:05:11 +0100
commit4fc26211fda53023f8ce703ccf4b1a2bbfbbe10a (patch)
tree711fcea1be7a22cf3ef7d3ebf98ea01d7cade62d /Cargo.lock
parenta5178fbb0bde3ff9f863ef0cca48748cb993390a (diff)
it works, now needs cleanup
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock100
1 files changed, 98 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index b4d33c2..92b55d7 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -199,6 +199,95 @@ dependencies = [
199] 199]
200 200
201[[package]] 201[[package]]
202name = "futures"
203version = "0.3.31"
204source = "registry+https://github.com/rust-lang/crates.io-index"
205checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
206dependencies = [
207 "futures-channel",
208 "futures-core",
209 "futures-executor",
210 "futures-io",
211 "futures-sink",
212 "futures-task",
213 "futures-util",
214]
215
216[[package]]
217name = "futures-channel"
218version = "0.3.31"
219source = "registry+https://github.com/rust-lang/crates.io-index"
220checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
221dependencies = [
222 "futures-core",
223 "futures-sink",
224]
225
226[[package]]
227name = "futures-core"
228version = "0.3.31"
229source = "registry+https://github.com/rust-lang/crates.io-index"
230checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
231
232[[package]]
233name = "futures-executor"
234version = "0.3.31"
235source = "registry+https://github.com/rust-lang/crates.io-index"
236checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
237dependencies = [
238 "futures-core",
239 "futures-task",
240 "futures-util",
241]
242
243[[package]]
244name = "futures-io"
245version = "0.3.31"
246source = "registry+https://github.com/rust-lang/crates.io-index"
247checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
248
249[[package]]
250name = "futures-macro"
251version = "0.3.31"
252source = "registry+https://github.com/rust-lang/crates.io-index"
253checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
254dependencies = [
255 "proc-macro2",
256 "quote",
257 "syn",
258]
259
260[[package]]
261name = "futures-sink"
262version = "0.3.31"
263source = "registry+https://github.com/rust-lang/crates.io-index"
264checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
265
266[[package]]
267name = "futures-task"
268version = "0.3.31"
269source = "registry+https://github.com/rust-lang/crates.io-index"
270checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
271
272[[package]]
273name = "futures-util"
274version = "0.3.31"
275source = "registry+https://github.com/rust-lang/crates.io-index"
276checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
277dependencies = [
278 "futures-channel",
279 "futures-core",
280 "futures-io",
281 "futures-macro",
282 "futures-sink",
283 "futures-task",
284 "memchr",
285 "pin-project-lite",
286 "pin-utils",
287 "slab",
288]
289
290[[package]]
202name = "gimli" 291name = "gimli"
203version = "0.31.1" 292version = "0.31.1"
204source = "registry+https://github.com/rust-lang/crates.io-index" 293source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -313,12 +402,13 @@ dependencies = [
313] 402]
314 403
315[[package]] 404[[package]]
316name = "oar-p2p-net" 405name = "oar-p2p"
317version = "0.1.0" 406version = "0.0.0"
318dependencies = [ 407dependencies = [
319 "clap", 408 "clap",
320 "color-eyre", 409 "color-eyre",
321 "eyre", 410 "eyre",
411 "futures",
322 "serde", 412 "serde",
323 "serde_json", 413 "serde_json",
324 "thiserror", 414 "thiserror",
@@ -390,6 +480,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
390checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 480checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
391 481
392[[package]] 482[[package]]
483name = "pin-utils"
484version = "0.1.0"
485source = "registry+https://github.com/rust-lang/crates.io-index"
486checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
487
488[[package]]
393name = "proc-macro2" 489name = "proc-macro2"
394version = "1.0.95" 490version = "1.0.95"
395source = "registry+https://github.com/rust-lang/crates.io-index" 491source = "registry+https://github.com/rust-lang/crates.io-index"