bit-twiddler 0.1.0

Cross-platform developer toolbox: bit manipulation, hashing, YAML/JSON/SQL, QR, Markdown, cron, and 40+ more tools — Tauri v2, no Node.js
1
2
3
4
#[tauri::command]
pub fn describe_cron(expression: String) -> Result<String, String> {
    cronspeak::describe(&expression).map_err(|e| e.to_string())
}