diff options
author | 2024-05-18 11:32:26 +0200 | |
---|---|---|
committer | 2024-05-18 11:32:26 +0200 | |
commit | 4936efc3751b769984bff4344a9fbb198a7c1ea2 (patch) | |
tree | 34c2c200aa9fa275f95e598b2a05d499833a8c64 /examples/clock | |
parent | d265cc133efbe02cab890260dbce16768f3d06dd (diff) | |
download | iced-4936efc3751b769984bff4344a9fbb198a7c1ea2.tar.gz iced-4936efc3751b769984bff4344a9fbb198a7c1ea2.tar.bz2 iced-4936efc3751b769984bff4344a9fbb198a7c1ea2.zip |
Remove redundant default `chrono` feature in `clock` example
Diffstat (limited to 'examples/clock')
-rw-r--r-- | examples/clock/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/clock/Cargo.toml b/examples/clock/Cargo.toml index 2fddc7da..bc6c202b 100644 --- a/examples/clock/Cargo.toml +++ b/examples/clock/Cargo.toml @@ -8,5 +8,5 @@ publish = false [dependencies] iced.workspace = true iced.features = ["canvas", "tokio", "debug"] -chrono = { version = "0.4", features = [ "clock" ] } +chrono = "0.4" tracing-subscriber = "0.3" |