Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hoangph271/iced_counter
scope creeped counter application, built with Rust
https://github.com/hoangph271/iced_counter
iced iced-rs rust rust-lang
Last synced: 2 months ago
JSON representation
scope creeped counter application, built with Rust
- Host: GitHub
- URL: https://github.com/hoangph271/iced_counter
- Owner: hoangph271
- Created: 2024-06-21T19:06:04.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-07-31T09:02:09.000Z (5 months ago)
- Last Synced: 2024-10-04T22:12:33.756Z (3 months ago)
- Topics: iced, iced-rs, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 188 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
Awesome Lists containing this project
README
A scope creeped counter application created for learning ***Iced***...!
### TODOs:
- [ ] ThemeMode subscription should pause/cancel when ThemeMode::Light or ThemeMode::Dark is selected### Lessons learned:
These are the size in bytes of the executable when I altered the `[profile.release]` section of `Cargo.toml`,
by enabling features, one by one from top to bottom:```toml
# Pop!_OS jammy 22.04 x86_64
# Commit be25472aef61a6f4ea15c5982321fe31b28c83e2[profile.release]
# without any optimization: 18_528
strip = true # 14_508
lto = true # 12_136
panic = "abort" # 10_728
codegen-units = 1 # 10_160
```