36 lines
889 B
TOML
36 lines
889 B
TOML
[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"]
|