beads_rust 0.2.8

Agent-first issue tracker (SQLite + JSONL)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[test]
fn test_parse_flexible_timestamp_panic_on_multibyte() {
    let input = "+10🚀";
    let result = beads_rust::util::time::parse_flexible_timestamp(input, "test");
    // Should return Err, not panic
    assert!(result.is_err());
}

#[test]
fn test_parse_relative_time_panic_on_multibyte() {
    let input = "+10🚀";
    let result = beads_rust::util::time::parse_relative_time(input);
    // Should return None, not panic
    assert!(result.is_none());
}