
- 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
28 lines
743 B
TOML
28 lines
743 B
TOML
[workspace]
|
|
members = [
|
|
"bulletin-generator",
|
|
"bulletin-input",
|
|
"bulletin-shared",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Your Name <your.email@example.com>"]
|
|
|
|
[workspace.dependencies]
|
|
tokio = { version = "1.42", features = ["full"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
toml = "0.8"
|
|
reqwest = { version = "0.12", features = ["json", "multipart", "stream"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
thiserror = "2.0"
|
|
anyhow = "1.0"
|
|
csv = "1.3"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
uuid = { version = "1.0", features = ["v4"] }
|
|
dotenvy = "0.15" |