Migrate what bit of the yapper.py script there was to rust.

This commit is contained in:
Olivia Brooks
2025-10-12 22:34:54 -04:00
parent bda1b138df
commit d9dcf43be8
6 changed files with 719 additions and 0 deletions

29
Cargo.toml Normal file
View File

@@ -0,0 +1,29 @@
[package]
name = "cutinews"
version = "0.1.0"
edition = "2024"
license = "MIT"
[dependencies]
chrono = "0.4"
ron = "0.11"
[dependencies.clap]
version = "4.5"
default-features = false
features = [
# From default features collection
"error-context",
"help",
"std",
"suggestions",
"usage",
# Optional features
"derive",
"string",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]