diff options
author | 2022-11-01 19:55:37 +0100 | |
---|---|---|
committer | 2022-11-01 19:55:37 +0100 | |
commit | 743a7192b70bc5184aa47e7851098b75b8a1f288 (patch) | |
tree | abcc0101f3ac7c0f2487446e0297d2193346d4f6 /examples | |
parent | be9cd3a09f4fb027786c634158ddeaca75a169f0 (diff) | |
download | iced-743a7192b70bc5184aa47e7851098b75b8a1f288.tar.gz iced-743a7192b70bc5184aa47e7851098b75b8a1f288.tar.bz2 iced-743a7192b70bc5184aa47e7851098b75b8a1f288.zip |
Remove patch version from `once_cell` dependency
Diffstat (limited to 'examples')
-rw-r--r-- | examples/todos/Cargo.toml | 2 | ||||
-rw-r--r-- | examples/websocket/Cargo.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/todos/Cargo.toml b/examples/todos/Cargo.toml index d9916057..7ad4d558 100644 --- a/examples/todos/Cargo.toml +++ b/examples/todos/Cargo.toml @@ -7,9 +7,9 @@ publish = false [dependencies] iced = { path = "../..", features = ["async-std", "debug"] } -once_cell = "1.15.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" +once_cell = "1.15" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] async-std = "1.0" diff --git a/examples/websocket/Cargo.toml b/examples/websocket/Cargo.toml index fcb4dd3f..c25f067b 100644 --- a/examples/websocket/Cargo.toml +++ b/examples/websocket/Cargo.toml @@ -9,7 +9,7 @@ publish = false iced = { path = "../..", features = ["tokio", "debug"] } iced_native = { path = "../../native" } iced_futures = { path = "../../futures" } -once_cell = "1.15.0" +once_cell = "1.15" [dependencies.async-tungstenite] version = "0.16" |