towl 0.3.7

A fast CLI tool to scan codebases for TODO comments and output them in multiple formats
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;

#[derive(Error, Debug)]
pub enum FormatterError {
    #[error("Serialization error: {0}")]
    SerializationError(String),
    #[error("Integer overflow: value {0} exceeds i64 range")]
    IntegerOverflow(usize),
}