Skip to content

Commit

Permalink
chore(deps): bump the library-deps group across 1 directory with 8 up…
Browse files Browse the repository at this point in the history
…dates

---
updated-dependencies:
- dependency-name: comde
  dependency-type: direct:production
  dependency-group: library-deps
- dependency-name: http
  dependency-type: direct:production
  dependency-group: library-deps
- dependency-name: reqwest
  dependency-type: direct:production
  dependency-group: library-deps
- dependency-name: zip
  dependency-type: direct:production
  dependency-group: library-deps
- dependency-name: android_logger
  dependency-type: direct:production
  dependency-group: library-deps
- dependency-name: mockall
  dependency-type: direct:production
  dependency-group: library-deps
- dependency-name: serial_test
  dependency-type: direct:production
  dependency-group: library-deps
- dependency-name: cbindgen
  dependency-type: direct:production
  dependency-group: library-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 18, 2024
1 parent 7648128 commit 085cc83
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions library/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ bipatch = "1.0.0"
# Used for exposing C API
# comde is a wrapper around several compression libraries.
# We only use zstd and could depend on it directly instead.
comde = { version = "0.2.3", default-features = false, features = [
comde = { version = "0.3.0", default-features = false, features = [
"zstandard",
] }
dyn-clone = "1.0.16"
# For decoding the hex-encoded hashes in Patch network responses.
hex = "0.4.3"
# Used to construct mock responses.
http = "0.2.9"
http = "1.1.0"
libc = "0.2.98"
# For error!(), info!(), etc macros. `print` will not show up on Android.
log = "0.4.14"
Expand All @@ -37,7 +37,7 @@ once_cell = "1.17.1"
# Pipe is a simple in-memory pipe implementation, there might be a std way too?
pipe = "0.4.0"
# Used for networking.
reqwest = { version = "0.11", default-features = false, features = [
reqwest = { version = "0.12", default-features = false, features = [
"blocking",
"json",
"rustls-tls",
Expand All @@ -50,11 +50,11 @@ serde_yaml = "0.9.19"
# For computing hashes of patch files for validation.
sha2 = "0.10.6"
# For decompressing .apk files.
zip = { version = "0.6.4", default-features = false, features = ["deflate"] }
zip = { version = "2.2.0", default-features = false, features = ["deflate"] }

[target.'cfg(target_os = "android")'.dependencies]
# For logging to Android logcat.
android_logger = "0.13.0"
android_logger = "0.14.1"
# Send panics to log (instead of stderr), thus logcat on Android.
log-panics = { version = "2", features = ["with-backtrace"] }

Expand All @@ -65,14 +65,14 @@ log-panics = { version = "2", features = ["with-backtrace"] }
oslog = "0.2.0"

[dev-dependencies]
mockall = "0.12.1"
mockall = "0.13.1"
mockito = "1.2.0"
mock_instant = "0.5.1"
# Gives #[serial] attribute for locking all of our shorebird_init
# tests to a single thread so they don't conflict with each other.
serial_test = "2.0.0"
serial_test = "3.2.0"
tempdir = "0.3.7"

# <https://github.com/eqrion/cbindgen/blob/master/docs.md#buildrs>
[build-dependencies]
cbindgen = "0.24.0"
cbindgen = "0.27.0"

0 comments on commit 085cc83

Please sign in to comment.