
- Fixed Sabbath School parser to handle API data with extra line breaks - Cleaned up project structure and removed nested directories - Organized output to single directory structure - Removed YouTube link from contact section for cleaner layout - Improved parser robustness for multi-line content between labels - Added proper .gitignore for Rust project
24 lines
513 B
TOML
24 lines
513 B
TOML
[package]
|
|
name = "bulletin-input"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[[bin]]
|
|
name = "bulletin-input"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
bulletin-shared = { path = "../bulletin-shared" }
|
|
tokio.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
reqwest.workspace = true
|
|
chrono.workspace = true
|
|
anyhow.workspace = true
|
|
csv.workspace = true
|
|
clap.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
dialoguer = "0.11"
|
|
regex = "1.11"
|
|
dotenvy.workspace = true |