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
24 lines (22 loc) · 762 Bytes
/
Copy pathCargo.toml
File metadata and controls
24 lines (22 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
description = "A library to interact with the Torrust Tracker REST API."
keywords = [ "bittorrent", "client", "tracker" ]
license = "LGPL-3.0"
name = "torrust-tracker-rest-api-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 = "0.1.0"
[dependencies]
hyper = "1"
reqwest = { version = "0", features = [ "json", "query" ] }
serde = { version = "1", features = [ "derive" ] }
thiserror = "2"
torrust-tracker-rest-api-protocol = { version = "0.1.0", path = "../rest-api-protocol" }
url = { version = "2", features = [ "serde" ] }
uuid = { version = "1", features = [ "v4" ] }