initial commit

This commit is contained in:
yggverse 2025-06-08 16:27:41 +03:00
parent c8d4947382
commit f56ebb6877
9 changed files with 291 additions and 0 deletions

15
Cargo.toml Normal file
View file

@ -0,0 +1,15 @@
[package]
name = "htcount"
version = "0.1.0"
edition = "2024"
license = "MIT"
readme = "README.md"
description = "Simple CLI/daemon tool for counting visitors using access.log and exporting totals in multiple formats, such as JSON or SVG badge"
keywords = ["access", "log", "counter", "badge", "stats"]
categories = ["network-programming"]
repository = "https://github.com/YGGverse/htcount"
# homepage = "https://yggverse.github.io"
[dependencies]
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }