There is a long-standing problem (https://github.com/time-rs/time/issues/293) that has not yet been solved by time-rs Switch to chrono as it seemed to solve the problem (https://github.com/chronotope/chrono/pull/677)
12 lines
300 B
TOML
12 lines
300 B
TOML
[package]
|
|
name = "clock"
|
|
version = "0.1.0"
|
|
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
iced.workspace = true
|
|
iced.features = ["canvas", "tokio", "debug"]
|
|
chrono = { version = "0.4", features = [ "clock" ] }
|
|
tracing-subscriber = "0.3"
|