[package] name = "epomo" version = "0.2.2" description = "A tiny Pomodoro app written on top of egui." license = "MIT" authors = ["Tatu Pesonen "] repository = "https://github.com/tatupesonen/epomo" edition = "2021" keywords = ["pomodoro", "timer", "egui"] rust-version = "1.65" [dependencies] egui = "0.21.0" eframe = { version = "0.21.0", default-features = false, features = [ "accesskit", # Make egui comptaible with screen readers. NOTE: adds a lot of dependencies. "default_fonts", # Embed the default egui fonts. "glow", # Use the glow rendering backend. Alternative: "wgpu". "persistence", # Enable restoring app state when restarting the app. ] } # You only need serde if you want app persistence: serde = { version = "1", features = ["derive"] } chrono = "0.4.23" notify-rust = "4.8.0" # native: [target.'cfg(not(target_arch = "wasm32"))'.dependencies] tracing-subscriber = "0.3" # web: [target.'cfg(target_arch = "wasm32")'.dependencies] console_error_panic_hook = "0.1.6" tracing-wasm = "0.2" wasm-bindgen-futures = "0.4" [profile.release] opt-level = 2 # fast and small wasm # Optimize all dependencies even in debug builds: [profile.dev.package."*"] opt-level = 2 [patch.crates-io] # If you want to use the bleeding edge version of egui and eframe: # egui = { git = "https://github.com/emilk/egui", branch = "master" } # eframe = { git = "https://github.com/emilk/egui", branch = "master" } # If you fork https://github.com/emilk/egui you can test with: # egui = { path = "../egui/crates/egui" } # eframe = { path = "../egui/crates/eframe" }