Commit remaining Rust parser updates

This commit is contained in:
2026-03-12 21:17:37 -04:00
parent 7a7a78340f
commit 1efbffa347
4 changed files with 211 additions and 56 deletions

View File

@@ -20,7 +20,9 @@ fn main() {
fn run() -> Result<()> {
let command = env::args().nth(1).unwrap_or_default();
if command != "hydrate-filing" {
return Err(anyhow!("invalid request: expected `hydrate-filing` command"));
return Err(anyhow!(
"invalid request: expected `hydrate-filing` command"
));
}
let mut buffer = String::new();