This commit is contained in:
2026-05-17 03:53:15 +03:30
commit 329ddc9ced
41 changed files with 5558 additions and 0 deletions

35
src-tauri/Cargo.toml Normal file
View File

@@ -0,0 +1,35 @@
[package]
name = "codex-limit-monitor"
version = "0.1.0"
description = "Windows-first desktop monitor for Codex limits and usage"
authors = ["meghdad"]
edition = "2021"
[lib]
name = "codex_limit_monitor"
crate-type = ["rlib"]
[[bin]]
name = "codex-limit-monitor"
path = "src/main.rs"
test = false
[build-dependencies]
tauri-build = { version = "2.6", features = [] }
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
dirs = "6"
regex = "1"
rusqlite = { version = "0.37", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tauri = { version = "2.11", features = ["tray-icon", "image-png"] }
tauri-plugin-notification = "2.3"
thiserror = "2"
tokio = { version = "1", features = ["io-util", "macros", "process", "sync", "time"] }
tracing = "0.1"
[features]
default = ["custom-protocol"]
custom-protocol = ["tauri/custom-protocol"]