forked from torrust/torrust-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (41 loc) · 1.42 KB
/
Copy pathCargo.toml
File metadata and controls
47 lines (41 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
description = "A collection of console clients to make requests to BitTorrent trackers."
keywords = [ "bittorrent", "client", "tracker" ]
license = "LGPL-3.0"
name = "torrust-tracker-client"
readme = "README.md"
authors.workspace = true
documentation.workspace = true
edition.workspace = true
homepage.workspace = true
publish.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true
[lints]
workspace = true
[lib]
name = "torrust_tracker_console_client"
[dependencies]
anyhow = "1"
bencode2json = "0.1"
torrust-tracker-udp-tracker-protocol = { version = "3.0.0-develop", path = "../../packages/udp-protocol" }
torrust-info-hash = "=0.2.0"
torrust-tracker-client = { package = "torrust-tracker-client-lib", version = "3.0.0-develop", path = "../../packages/tracker-client" }
clap = { version = "4", features = [ "derive", "env" ] }
futures = "0"
hyper = "1"
reqwest = { version = "0", features = [ "json" ] }
serde = { version = "1", features = [ "derive" ] }
serde_bencode = "0"
serde_bytes = "0"
serde_json = { version = "1", features = [ "preserve_order" ] }
thiserror = "2"
tokio = { version = "1", features = [ "macros", "net", "rt-multi-thread", "signal", "sync" ] }
tracing = "0"
tracing-subscriber = { version = "0", features = [ "json" ] }
url = { version = "2", features = [ "serde" ] }
[package.metadata.cargo-machete]
ignored = [ "serde_bytes" ]
[dev-dependencies]
tempfile = "3"