diff options
Diffstat (limited to 'examples/game_of_life/Cargo.toml')
-rw-r--r-- | examples/game_of_life/Cargo.toml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/examples/game_of_life/Cargo.toml b/examples/game_of_life/Cargo.toml index f0a794fb..7596844c 100644 --- a/examples/game_of_life/Cargo.toml +++ b/examples/game_of_life/Cargo.toml @@ -6,8 +6,10 @@ edition = "2021" publish = false [dependencies] -iced = { path = "../..", features = ["canvas", "tokio", "debug"] } -tokio = { version = "1.0", features = ["sync"] } -itertools = "0.9" -rustc-hash = "1.1" -env_logger = "0.9" +iced.workspace = true +iced.features = ["debug", "canvas", "tokio"] + +itertools = "0.12" +rustc-hash.workspace = true +tokio = { workspace = true, features = ["sync"] } +tracing-subscriber = "0.3" |