feat(yarr): restructure into workspace with separate API and CLI crates
Some checks failed
build / checks-matrix (push) Has been cancelled
build / checks-build (push) Has been cancelled
build / codecov (push) Has been cancelled
docs / docs (push) Has been cancelled

This commit is contained in:
uttarayan21
2025-10-08 17:02:34 +05:30
parent e9ecd2a295
commit 03fd2de38f
17 changed files with 803 additions and 148 deletions

33
yarr-api/Cargo.toml Normal file
View File

@@ -0,0 +1,33 @@
[package]
name = "yarr-api"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "Sonarr API client library"
authors = ["yarr contributors"]
repository = "https://github.com/user/yarr"
[dependencies]
# HTTP client and serialization
reqwest = { workspace = true, features = ["json"] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
# Async runtime
tokio = { workspace = true }
# Date/time handling
chrono = { workspace = true, features = ["serde"] }
# Error handling
thiserror = { workspace = true }
# Logging
tracing = { workspace = true }
# URL encoding
urlencoding = "2.1.3"
[dev-dependencies]
# For examples
tracing-subscriber = { workspace = true }