bump sha2, tokio-util, tauri and bstr. for consistency i pinned the tauri version to the specific semver like the others

This commit is contained in:
extrawurst 2023-10-18 13:16:03 +02:00 committed by extrawurst
parent c5f5dc015f
commit cd44939926
2 changed files with 19 additions and 13 deletions

24
Cargo.lock generated
View File

@ -517,12 +517,12 @@ dependencies = [
[[package]]
name = "bstr"
version = "1.6.2"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c2f7349907b712260e64b0afe2f84692af14a454be26187d9df565c7f69266a"
checksum = "c79ad7fb2dd38f3dabd76b09c6a5a20c038fc0213ef1e9afd30eb777f120f019"
dependencies = [
"memchr",
"regex-automata 0.3.8",
"regex-automata 0.4.3",
"serde",
]
@ -1921,7 +1921,7 @@ dependencies = [
"anyhow",
"async-trait",
"backoff",
"bstr 1.6.2",
"bstr 1.7.0",
"byteorder",
"chrono",
"console-subscriber",
@ -2028,7 +2028,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d"
dependencies = [
"aho-corasick",
"bstr 1.6.2",
"bstr 1.7.0",
"fnv",
"log",
"regex",
@ -4102,6 +4102,12 @@ dependencies = [
"regex-syntax 0.7.5",
]
[[package]]
name = "regex-automata"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
[[package]]
name = "regex-syntax"
version = "0.6.29"
@ -5246,9 +5252,9 @@ checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a"
[[package]]
name = "tauri"
version = "1.5.1"
version = "1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0238c5063bf9613054149a1b6bce4935922e532b7d8211f36989a490a79806be"
checksum = "9bfe673cf125ef364d6f56b15e8ce7537d9ca7e4dae1cf6fbbdeed2e024db3d9"
dependencies = [
"anyhow",
"cocoa",
@ -5638,9 +5644,9 @@ dependencies = [
[[package]]
name = "tokio-util"
version = "0.7.8"
version = "0.7.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
checksum = "1d68074620f57a0b21594d9735eb2e98ab38b17f80d3fcb189fca266771ca60d"
dependencies = [
"bytes",
"futures-core",

View File

@ -16,7 +16,7 @@ tempfile = "3.8"
anyhow = "1.0.72"
async-trait = "0.1.73"
backoff = "0.4.0"
bstr = "1.6.2"
bstr = "1.7.0"
byteorder = "1.4.3"
chrono = { version = "0.4.29", features = ["serde"] }
console-subscriber = "0.2.0"
@ -41,16 +41,16 @@ serde = { version = "1.0", features = ["derive"] }
serde-jsonlines = "0.4.0"
serde_json = { version = "1.0", features = [ "std", "arbitrary_precision" ] }
sha1 = "0.10.6"
sha2 = "0.10.6"
sha2 = "0.10.7"
similar = { version = "2.2.1", features = ["unicode"] }
ssh-key = { version = "0.6.1", features = [ "alloc", "ed25519" ] }
tantivy = "0.20.2"
tauri = { version = "1.5", features = ["dialog-open", "fs-read-file", "path-all", "process-relaunch", "protocol-asset", "shell-open", "system-tray", "window-maximize", "window-start-dragging", "window-unmaximize"] }
tauri = { version = "1.5.2", features = ["dialog-open", "fs-read-file", "path-all", "process-relaunch", "protocol-asset", "shell-open", "system-tray", "window-maximize", "window-start-dragging", "window-unmaximize"] }
tauri-plugin-single-instance = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
tauri-plugin-window-state = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
thiserror = "1.0.44"
tokio = { version = "1.29.1", features = [ "full", "sync", "tracing" ] }
tokio-util = "0.7.8"
tokio-util = "0.7.9"
tracing = "0.1.37"
tracing-appender = "0.2.2"
tracing-subscriber = "0.3.17"