diff --git a/Cargo.lock b/Cargo.lock index c62bee1f..c5a9efb6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -91,7 +91,7 @@ name = "cargo-mobile2" version = "0.6.0" dependencies = [ "colored", - "core-foundation 0.7.0", + "core-foundation", "deunicode", "duct", "dunce", @@ -162,32 +162,16 @@ dependencies = [ "winapi", ] -[[package]] -name = "core-foundation" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171" -dependencies = [ - "core-foundation-sys 0.7.0", - "libc", -] - [[package]] name = "core-foundation" version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" dependencies = [ - "core-foundation-sys 0.8.4", + "core-foundation-sys", "libc", ] -[[package]] -name = "core-foundation-sys" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac" - [[package]] name = "core-foundation-sys" version = "0.8.4" @@ -347,12 +331,12 @@ checksum = "4e4f5d6e192964d498b45abee72ca445e91909094bc8e8791259e82c2a0d1aa6" [[package]] name = "env_logger" -version = "0.7.1" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" +checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" dependencies = [ - "atty", "humantime", + "is-terminal", "log", "regex", "termcolor", @@ -620,12 +604,9 @@ dependencies = [ [[package]] name = "humantime" -version = "1.3.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" -dependencies = [ - "quick-error", -] +checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "idna" @@ -968,12 +949,6 @@ dependencies = [ "unicode-ident", ] -[[package]] -name = "quick-error" -version = "1.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" - [[package]] name = "quote" version = "1.0.33" @@ -1156,8 +1131,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" dependencies = [ "bitflags 1.3.2", - "core-foundation 0.9.3", - "core-foundation-sys 0.8.4", + "core-foundation", + "core-foundation-sys", "libc", "security-framework-sys", ] @@ -1168,7 +1143,7 @@ version = "2.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" dependencies = [ - "core-foundation-sys 0.8.4", + "core-foundation-sys", "libc", ] diff --git a/Cargo.toml b/Cargo.toml index 6befd76b..3c68f4e5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,17 +46,17 @@ openssl-vendored = [ "openssl/vendored" ] default = [ "cli", "ureq/native-tls" ] [dependencies] -handlebars = "4.3" +handlebars = "4.4" serde_json = "1.0" colored = "1.9" -deunicode = "1.1" +deunicode = "1.4" dunce = "1.0" english-numbers = "0.3" -env_logger = { version = "0.7", optional = true } +env_logger = { version = "0.10", optional = true } heck = "0.4" home = "0.5" ignore = "0.4" -java-properties = { version = "1.2" } +java-properties = "1.4" log = "0.4" once-cell-regex = "0.2" path_abs = "0.5" @@ -72,14 +72,14 @@ which = "4.4" rstest = "0.18" [target."cfg(target_os = \"macos\")".dependencies] -core-foundation = "0.7" +core-foundation = "0.9" openssl = "0.10" [target."cfg(not(target_os = \"macos\"))".dependencies] ureq = { version = "2.4", default-features = false, features = [ "gzip" ] } [target."cfg(target_os = \"linux\")".dependencies] -freedesktop_entry_parser = "1.1" +freedesktop_entry_parser = "1.3" [target."cfg(unix)".dependencies] libc = "0.2" @@ -106,7 +106,7 @@ embed-resource = "1.8" [build-dependencies] home = { version = "0.5", optional = true } dunce = { version = "1.0", optional = true } -handlebars = { version = "4.3", optional = true } +handlebars = { version = "4.4", optional = true } log = { version = "0.4", optional = true } serde = { version = "1.0", optional = true } serde_json = { version = "1.0", optional = true }