diff --git a/Cargo.lock b/Cargo.lock index 5c1515b1..ceb10acd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -140,9 +140,12 @@ checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" [[package]] name = "byte-unit" -version = "4.0.4" +version = "4.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a83e250117a919810172ac4d81016eb6da74f235399ac97df3dd8846275d03b6" +checksum = "1ba58563da2fefa88ddca9db6347a1818fc224be2faf916cd4c5e210d2653f4c" +dependencies = [ + "utf8-width", +] [[package]] name = "byteorder" @@ -1372,6 +1375,12 @@ version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c9232eb53352b4442e40d7900465dfc534e8cb2dc8f18656fcb2ac16112b5593" +[[package]] +name = "utf8-width" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f2c54fe5e8d6907c60dc6fba532cc8529245d97ff4e26cb490cb462de114ba4" + [[package]] name = "vcpkg" version = "0.2.10" diff --git a/Cargo.toml b/Cargo.toml index 4837654a..16a072c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,7 +46,7 @@ gethostname = "0.2.1" once_cell = "1.4.0" chrono = "0.4" sysinfo = "0.14.8" -byte-unit = "4.0.4" +byte-unit = "4.0.8" starship_module_config_derive = { version = "0.1.0", path = "starship_module_config_derive" } yaml-rust = "0.4" pest = "^2.1"