Skip to content

Commit

Permalink
chore: move crates deps to workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
micielski committed Jun 22, 2024
1 parent 5ad745a commit dbe6227
Show file tree
Hide file tree
Showing 4 changed files with 228 additions and 53 deletions.
192 changes: 168 additions & 24 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,39 @@ members = [
"rm-config",
]

[workspace.package]
version = "0.3.3"
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.3", path = "rm-config" }

magnetease = "0.1"
anyhow = "1"
serde = { version = "1", features = ["derive"] }
transmission-rpc = "0.4.2"
fuzzy-matcher = "0.3.7"
clap = { version = "4.5.6", features = ["derive"] }
base64 = "0.22"
xdg = "2.5"
url = "2.5"
toml = "0.8"

# Async
tokio = { version = "1", features = ["macros", "sync"] }
tokio-util = "0.7"
futures = "0.3"

# TUI
crossterm = { version = "0.27", features = ["event-stream"] }
ratatui = { version = "0.26", features = ["serde"] }
tui-input = "0.8"
tui-tree-widget = "0.20"

# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
Expand Down
Loading

0 comments on commit dbe6227

Please sign in to comment.