Initial workspace scaffold
Cargo workspace with 5 crates: buh-entity (pure data structs), buh-data (Turso/libsql data access), buh-util (scraper, rules, processor, sync modules), buh-cli (binary "buh" with client/daemon subcommands), and buh-ws (axum WebSocket server). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
4
crates/buh-util/src/lib.rs
Normal file
4
crates/buh-util/src/lib.rs
Normal file
@@ -0,0 +1,4 @@
|
||||
pub mod processor;
|
||||
pub mod rules;
|
||||
pub mod scraper;
|
||||
pub mod sync;
|
||||
1
crates/buh-util/src/processor.rs
Normal file
1
crates/buh-util/src/processor.rs
Normal file
@@ -0,0 +1 @@
|
||||
//! Post-download file processing and renaming.
|
||||
1
crates/buh-util/src/rules.rs
Normal file
1
crates/buh-util/src/rules.rs
Normal file
@@ -0,0 +1 @@
|
||||
//! Rule evaluation engine for torrent selection and discard.
|
||||
1
crates/buh-util/src/scraper.rs
Normal file
1
crates/buh-util/src/scraper.rs
Normal file
@@ -0,0 +1 @@
|
||||
//! Scraper routines for torrent indexers.
|
||||
1
crates/buh-util/src/sync.rs
Normal file
1
crates/buh-util/src/sync.rs
Normal file
@@ -0,0 +1 @@
|
||||
//! File synchronization to LAN targets.
|
||||
Reference in New Issue
Block a user