-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (50 loc) · 1.52 KB
/
Cargo.toml
File metadata and controls
55 lines (50 loc) · 1.52 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
48
49
50
51
52
53
54
55
[package]
name = "ferristream"
version = "0.0.21"
edition = "2024"
description = "A TUI app for streaming torrents on-the-fly"
license = "MIT"
repository = "https://github.com/van-sprundel/ferristream"
keywords = ["torrent", "streaming", "tui", "media"]
categories = ["command-line-utilities", "multimedia"]
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ target }.{ archive-format }"
pkg-fmt = "txz" # Changed from "tgz" to match .tar.xz files
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-fmt = "zip"
[dependencies]
async-trait = "0.1"
chrono = "0.4"
librqbit = { version = "8.1.1", default-features = false, features = ["http-api", "tracing-subscriber-utils", "rust-tls"] }
ratatui = "0.30.0"
crossterm = "0.29"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive", "rc"] }
toml = "0.9"
directories = "6.0"
thiserror = "2.0"
tokio = { version = "1", features = ["full"] }
urlencoding = "2.1"
quick-xml = "0.38"
sha1_smol = "1.0"
url = "2.5"
serde_json = "1.0"
tracing = "0.1"
tokio-util = "0.7"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
regex = "1"
which = "8"
discord-rich-presence = "1.0"
futures = "0.3"
itertools = "0.14"
once_cell = "1.20"
unicode-truncate = "2.0"
unicode-width = "0.2"
uuid = { version = "1", features = ["v4"] }
open = "5"
[dev-dependencies]
wiremock = "0.6"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"