-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
81 lines (72 loc) · 1.96 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[workspace]
resolver = "2"
members = [
"rm-main",
"rm-config",
]
[workspace.package]
version = "0.5.0"
edition = "2021"
authors = ["Remigiusz Micielski <[email protected]>"]
repository = "https://github.com/intuis/rustmission"
homepage = "https://github.com/intuis/rustmission"
license = "GPL-3.0-or-later"
[workspace.dependencies]
rm-config = { version = "0.5", path = "rm-config" }
rm-shared = { version = "0.5", path = "rm-shared" }
intuitils = "0.0.5"
magnetease = "0.3"
anyhow = "1"
serde = { version = "1", features = ["derive"] }
transmission-rpc = "0.4"
fuzzy-matcher = "0.3.7"
clap = { version = "4", features = ["derive"] }
base64 = "0.22"
xdg = "2.5"
url = { version = "2.5", features = ["serde"] }
toml = "0.8"
rss = "2"
reqwest = "0.12"
regex = "1"
thiserror = "1"
chrono = "0.4"
open = "5.3.0"
# Async
tokio = { version = "1", features = ["macros", "sync"] }
tokio-util = "0.7"
futures = "0.3"
# TUI
crossterm = { version = "0.28", features = ["event-stream", "serde"] }
ratatui = { version = "0.29", features = ["serde"] }
tui-input = "0.11"
tui-tree-widget = "0.23"
throbber-widgets-tui = "0.8"
intui-tabs = "0.3"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.16.0"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["shell", "homebrew"]
# A GitHub repo to push Homebrew formulas to
tap = "intuis/homebrew-tap"
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu"]
# Publish jobs to run in CI
publish-jobs = ["homebrew"]
# Publish jobs to run in CI
pr-run-mode = "plan"
# Whether to install an updater program
install-updater = true
[profile.release]
opt-level = 3
strip = "symbols"
codegen-units = 1
lto = "fat"
panic = "abort"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"