v0.4.0
Some checks failed
Build and Release / build (push) Has been cancelled

This commit is contained in:
2026-05-17 01:23:37 -05:00
parent e60b6af388
commit bb14b125a2
27 changed files with 4517 additions and 0 deletions

32
Cargo.toml Normal file
View File

@@ -0,0 +1,32 @@
[package]
name = "tickr"
version = "0.4.0"
edition = "2021"
[[bin]]
name = "tickr"
path = "src/main.rs"
[dependencies]
eframe = { version = "0.27", features = ["default"] }
egui = "0.27"
reqwest = { version = "0.12", features = ["json", "rustls-tls", "cookies"], default-features = false }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", features = ["serde"] }
anyhow = "1"
toml = "0.8"
dirs = "5"
semver = "1"
tray-icon = "0.14"
image = { version = "0.25", default-features = false, features = ["ico"] }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"