-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (29 loc) · 839 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (29 loc) · 839 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
25
26
27
28
29
30
31
[package]
name = "transmission-cli"
version = "0.6.0"
edition = "2024"
description = "A modern CLI for Transmission BitTorrent client — filtering, seeding policies, tracker management, and automation"
license = "MIT"
repository = "https://github.com/lu-zhengda/tsm"
homepage = "https://github.com/lu-zhengda/tsm"
keywords = ["transmission", "torrent", "bittorrent", "cli", "automation"]
categories = ["command-line-utilities"]
readme = "README.md"
[[bin]]
name = "tsm"
path = "src/main.rs"
[dependencies]
base64 = "0.22.1"
clap = { version = "4.6.0", features = ["derive"] }
clap_complete = "4.6.0"
comfy-table = "7.2.2"
crossterm = "0.29"
ctrlc = "3.5.2"
dirs = "6.0.0"
dotenvy = "0.15.7"
notify = "8.2.0"
rpassword = "7.4.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
toml = "1.1.0"
ureq = "3.3.0"