diff --git a/Cargo.lock b/Cargo.lock index 5a7eec9f..e08067a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3397,9 +3397,9 @@ dependencies = [ [[package]] name = "time" -version = "0.3.37" +version = "0.3.39" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21" +checksum = "dad298b01a40a23aac4580b67e3dbedb7cc8402f3592d7f49469de2ea4aecdd8" dependencies = [ "deranged", "itoa", @@ -3414,15 +3414,15 @@ dependencies = [ [[package]] name = "time-core" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" +checksum = "765c97a5b985b7c11d7bc27fa927dc4fe6af3a6dfb021d28deb60d3bf51e76ef" [[package]] name = "time-macros" -version = "0.2.19" +version = "0.2.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de" +checksum = "e8093bc3e81c3bc5f7879de09619d06c9a5a5e45ca44dfeeb7225bae38005c5c" dependencies = [ "num-conv", "time-core", diff --git a/examples/apps/calendar-explorer/Cargo.toml b/examples/apps/calendar-explorer/Cargo.toml index 7c3da818..3cc7f0eb 100644 --- a/examples/apps/calendar-explorer/Cargo.toml +++ b/examples/apps/calendar-explorer/Cargo.toml @@ -9,7 +9,7 @@ rust-version.workspace = true color-eyre.workspace = true crossterm.workspace = true ratatui.workspace = true -time = { version = "0.3.37", features = ["formatting", "parsing"] } +time = { version = "0.3.39", features = ["formatting", "parsing"] } [lints] workspace = true diff --git a/examples/apps/demo2/Cargo.toml b/examples/apps/demo2/Cargo.toml index c4e7193a..b9f33b1e 100644 --- a/examples/apps/demo2/Cargo.toml +++ b/examples/apps/demo2/Cargo.toml @@ -15,5 +15,5 @@ rand = "0.9.0" rand_chacha = "0.9.0" ratatui = { workspace = true, features = ["all-widgets"] } strum.workspace = true -time = "0.3.37" +time = "0.3.39" unicode-width = "0.2.0" diff --git a/ratatui/Cargo.toml b/ratatui/Cargo.toml index 48c77a4d..00d5a1ef 100644 --- a/ratatui/Cargo.toml +++ b/ratatui/Cargo.toml @@ -110,7 +110,7 @@ ratatui-macros = { workspace = true, optional = true } ratatui-termwiz = { workspace = true, optional = true } ratatui-widgets = { workspace = true } serde = { workspace = true, optional = true } -time = { version = "0.3.37", optional = true, features = ["local-offset"] } +time = { version = "0.3.39", optional = true, features = ["local-offset"] } [target.'cfg(not(windows))'.dependencies] ratatui-termion = { workspace = true, optional = true }