-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (41 loc) · 1.39 KB
/
Cargo.toml
File metadata and controls
45 lines (41 loc) · 1.39 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
[package]
name = "rutorrent"
version = "0.3.1"
description = "RuTorrent is a lightweight API that downloads magnet links and asynchronously transfers files to a remote server over SSH via rsync"
license = "MIT"
documentation = "https://docs.rs/rutorrent"
homepage = "https://github.com/thevickypedia/rutorrent"
repository = "https://github.com/thevickypedia/rutorrent"
rust-version = "1.95.0"
keywords = ["rutorrent", "qbittorrent", "asynchronous-server"]
categories = ["web-programming::http-server", "asynchronous"]
include = ["/src", "LICENSE"]
edition = "2024"
authors = ["Vignesh Rao"]
[lib]
name = "rutorrent"
path = "src/lib.rs"
[[bin]]
name = "rutorrent"
path = "src/main.rs"
[package.metadata.docs.rs]
rustdoc-args = ["--document-private-items"]
[dependencies]
utoipa = { version = "5.5", features = ["actix_extras"] }
utoipa-swagger-ui = { version = "9.0", features = ["actix-web", "vendored"] }
actix-web = "4.13"
reqwest = { version = "0.13", features = ["cookies", "json", "form"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
actix-rt = "2.11"
tokio = { version = "1.52", features = ["rt-multi-thread", "macros", "process", "io-util", "time", "sync", "fs"] }
env_logger = "0.11"
chrono = "0.4"
log = "0.4"
uuid = { version = "1.23", features = ["v4"] }
dotenv = "0.15"
url = "2.5"
regex = "1.12"
rusqlite = { version = "0.39", features = ["bundled"] }
dirs = "6.0"
base64 = "0.22"