-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
36 lines (34 loc) · 1.06 KB
/
Cargo.toml
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
[package]
name = "attractorr"
version = "0.6.3"
authors = ["Raphael Nestler <raphael.nestler@gmail.com>"]
edition = "2021"
rust-version = "1.74"
description = "A CLI tool to scrape the web for magnet links"
repository = "https://github.com/rnestler/attractorr/"
license = "MIT OR Apache-2.0"
keywords = ["cli", "torrent", "magnet"]
categories = ["command-line-utilities"]
[profile.release]
codegen-units = 1
lto = "fat"
[dependencies]
bytesize = "1.3.0"
bytes = "1.9.0"
hyper = { version = "1.5.2", features = ["full"] }
hyper-util = { version = "0.1.10", features = ["full"] }
http-body-util = "0.1.2"
hyper-tls = "0.6.0"
clap = { version = "4.5.23", features = ["help", "usage", "error-context", "std", "derive"], default-features = false }
termcolor = "1.3.0"
is-terminal = "0.4.10"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
env_logger = "0.11.6"
log = "^0.4"
async-trait = "^0.1.83"
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] }
percent-encoding = "^2.1.0"
futures-util = "0.3.31"
torrent_search = "0.3"
yts-api = "0.4"