diff --git a/Cargo.lock b/Cargo.lock index 6d112b13..be631f7d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -76,14 +76,14 @@ checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd" [[package]] name = "alsa" -version = "0.6.1" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5634739325616a86b999bb65b49e1e502f179596145fd47b60e00b687782cea" +checksum = "5915f52fe2cf65e83924d037b6c5290b7cee097c6b5c8700746e6168a343fd6b" dependencies = [ "alsa-sys", "bitflags", "libc", - "nix 0.24.2", + "nix 0.23.1", ] [[package]] @@ -596,9 +596,9 @@ dependencies = [ [[package]] name = "clap" -version = "3.2.21" +version = "3.2.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ed5341b2301a26ab80be5cbdced622e80ed808483c52e45e3310a877d3b37d7" +checksum = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5" dependencies = [ "atty", "bitflags", @@ -1277,7 +1277,7 @@ dependencies = [ [[package]] name = "femtovg" version = "0.4.0" -source = "git+https://github.com/femtovg/femtovg?rev=7d3686e1b79b3f059d3537b44a21ca8241617f83#7d3686e1b79b3f059d3537b44a21ca8241617f83" +source = "git+https://github.com/femtovg/femtovg?rev=20dc7ef142004736f1ba1c626dd9c5bb556dde14#20dc7ef142004736f1ba1c626dd9c5bb556dde14" dependencies = [ "bitflags", "fnv", @@ -1289,7 +1289,7 @@ dependencies = [ "lru", "ouroboros", "rgb", - "rustybuzz 0.5.2", + "rustybuzz 0.6.0", "unicode-bidi", "unicode-segmentation", "wasm-bindgen", @@ -2250,9 +2250,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "libc" -version = "0.2.135" +version = "0.2.136" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68783febc7782c6c5cb401fbda4de5a9898be1762314da0bb2c10ced61f18b0c" +checksum = "55edcf6c0bb319052dea84732cf99db461780fd5e8d3eb46ab6ff312ab31f197" [[package]] name = "libloading" @@ -2463,14 +2463,14 @@ dependencies = [ [[package]] name = "mio" -version = "0.8.4" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf" +checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de" dependencies = [ "libc", "log", "wasi 0.11.0+wasi-snapshot-preview1", - "windows-sys 0.36.1", + "windows-sys 0.42.0", ] [[package]] @@ -2698,6 +2698,19 @@ dependencies = [ "memoffset", ] +[[package]] +name = "nix" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6" +dependencies = [ + "bitflags", + "cc", + "cfg-if 1.0.0", + "libc", + "memoffset", +] + [[package]] name = "nix" version = "0.24.2" @@ -3649,9 +3662,9 @@ dependencies = [ [[package]] name = "rustybuzz" -version = "0.5.2" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4930b3853d030e596c8912da1c3d9b5e898c24b109d459e05166999860792118" +checksum = "ab9e34ecf6900625412355a61bda0bd68099fe674de707c67e5e4aed2c05e489" dependencies = [ "bitflags", "bytemuck", @@ -4145,9 +4158,9 @@ dependencies = [ [[package]] name = "textwrap" -version = "0.15.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb" +checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" [[package]] name = "thiserror" @@ -4171,21 +4184,32 @@ dependencies = [ [[package]] name = "time" -version = "0.3.15" +version = "0.3.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d634a985c4d4238ec39cacaed2e7ae552fbd3c476b552c1deac3021b7d7eaf0c" +checksum = "0fab5c8b9980850e06d92ddbe3ab839c062c801f3927c0fb8abd6fc8e918fbca" dependencies = [ "itoa 1.0.4", "libc", "num_threads", + "serde", + "time-core", "time-macros", ] [[package]] -name = "time-macros" -version = "0.2.4" +name = "time-core" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792" +checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" + +[[package]] +name = "time-macros" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "65bb801831d812c562ae7d2bfb531f26e66e4e1f6b17307ba4149c5064710e5b" +dependencies = [ + "time-core", +] [[package]] name = "tiny-skia" @@ -4440,7 +4464,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "vizia" version = "0.1.0" -source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#a7e6ee72169524e91ceee578e543e7e533af8b22" +source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#364a67fdd6e3be57adb057ead56786b151208438" dependencies = [ "vizia_baseview", "vizia_core", @@ -4450,7 +4474,7 @@ dependencies = [ [[package]] name = "vizia_baseview" version = "0.1.0" -source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#a7e6ee72169524e91ceee578e543e7e533af8b22" +source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#364a67fdd6e3be57adb057ead56786b151208438" dependencies = [ "baseview 0.1.0 (git+https://github.com/robbert-vdh/baseview.git?branch=feature/resize)", "femtovg", @@ -4464,7 +4488,7 @@ dependencies = [ [[package]] name = "vizia_core" version = "0.1.0" -source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#a7e6ee72169524e91ceee578e543e7e533af8b22" +source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#364a67fdd6e3be57adb057ead56786b151208438" dependencies = [ "bitflags", "copypasta 0.8.1", @@ -4492,7 +4516,7 @@ dependencies = [ [[package]] name = "vizia_derive" version = "0.1.0" -source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#a7e6ee72169524e91ceee578e543e7e533af8b22" +source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#364a67fdd6e3be57adb057ead56786b151208438" dependencies = [ "proc-macro2", "quote", @@ -4502,12 +4526,12 @@ dependencies = [ [[package]] name = "vizia_id" version = "0.1.0" -source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#a7e6ee72169524e91ceee578e543e7e533af8b22" +source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#364a67fdd6e3be57adb057ead56786b151208438" [[package]] name = "vizia_input" version = "0.1.0" -source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#a7e6ee72169524e91ceee578e543e7e533af8b22" +source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#364a67fdd6e3be57adb057ead56786b151208438" dependencies = [ "bitflags", "keyboard-types", @@ -4517,7 +4541,7 @@ dependencies = [ [[package]] name = "vizia_storage" version = "0.1.0" -source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#a7e6ee72169524e91ceee578e543e7e533af8b22" +source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#364a67fdd6e3be57adb057ead56786b151208438" dependencies = [ "morphorm", "vizia_id", @@ -4526,7 +4550,7 @@ dependencies = [ [[package]] name = "vizia_window" version = "0.1.0" -source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#a7e6ee72169524e91ceee578e543e7e533af8b22" +source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#364a67fdd6e3be57adb057ead56786b151208438" dependencies = [ "morphorm", "vizia_input", @@ -4535,7 +4559,7 @@ dependencies = [ [[package]] name = "vizia_winit" version = "0.1.0" -source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#a7e6ee72169524e91ceee578e543e7e533af8b22" +source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#364a67fdd6e3be57adb057ead56786b151208438" dependencies = [ "console_error_panic_hook", "copypasta 0.8.1",