Skip to content

Commit

Permalink
build(deps): bump the dependencies group with 5 updates (#181)
Browse files Browse the repository at this point in the history
Bumps the dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.86` | `1.0.89` |
| [prost](https://github.com/tokio-rs/prost) | `0.13.2` | `0.13.3` |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.11` | `0.7.12` |
| [security-framework](https://github.com/kornelski/rust-security-framework) | `2.11.1` | `3.0.0` |
| [tar](https://github.com/alexcrichton/tar-rs) | `0.4.41` | `0.4.42` |


Updates `anyhow` from 1.0.86 to 1.0.89
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.86...1.0.89)

Updates `prost` from 0.13.2 to 0.13.3
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Changelog](https://github.com/tokio-rs/prost/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/prost@v0.13.2...v0.13.3)

Updates `tokio-util` from 0.7.11 to 0.7.12
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-util-0.7.11...tokio-util-0.7.12)

Updates `security-framework` from 2.11.1 to 3.0.0
- [Release notes](https://github.com/kornelski/rust-security-framework/releases)
- [Commits](kornelski/rust-security-framework@v2.11.1...v3.0.0)

Updates `tar` from 0.4.41 to 0.4.42
- [Commits](alexcrichton/tar-rs@0.4.41...0.4.42)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: prost
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tokio-util
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: security-framework
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: tar
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Oct 2, 2024
1 parent 7d7b294 commit 2b864e8
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 40 deletions.
50 changes: 20 additions & 30 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ rust-version.workspace = true
publish.workspace = true

[dependencies]
anyhow = { version = "1.0.86", features = ["backtrace"] }
anyhow = { version = "1.0.89", features = ["backtrace"] }
log = "0.4.22"
once_cell = "1"
pretty-hex = "0.4.1"
Expand All @@ -43,8 +43,8 @@ boringtun = { version = "0.6", default-features = false }
x25519-dalek = "2.0.0"
console-subscriber = { version = "0.4.0", optional = true }
image = { version = "0.25.2", default-features = false, features = ["png", "tiff"] }
prost = "0.13.2"
tokio-util = { version = "0.7.10", features = ["codec"] }
prost = "0.13.3"
tokio-util = { version = "0.7.12", features = ["codec"] }
futures-util = { version = "0.3.30", features = ["sink"] }
lru_time_cache = "0.11.11"
internet-packet = { version = "0.2.0", features = ["smoltcp"] }
Expand Down Expand Up @@ -74,7 +74,7 @@ features = [
]

[target.'cfg(target_os = "macos")'.dependencies]
security-framework = "2.11.1"
security-framework = "3.0.0"
nix = { version = "0.29.0", default-features = false, features = ["fs"] }
core-graphics = "0.24"
core-foundation = "0.10"
Expand Down
2 changes: 1 addition & 1 deletion mitmproxy-macos/certificate-truster/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ rust-version.workspace = true
publish.workspace = true

[target.'cfg(target_os = "macos")'.dependencies]
security-framework = "2.11.1"
security-framework = "3.0.0"
4 changes: 2 additions & 2 deletions mitmproxy-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ crate-type = ["lib", "cdylib"]

[dependencies]
mitmproxy = { path = "../" }
anyhow = { version = "1.0.86", features = ["backtrace"] }
anyhow = { version = "1.0.89", features = ["backtrace"] }
data-encoding = "2.6.0"
log = "0.4.22"
once_cell = "1"
Expand All @@ -27,7 +27,7 @@ pyo3-log = "0.11.0"
rand_core = { version = "0.6.4", features = ["getrandom"] }
tokio = { version = "1.40", features = ["macros", "net", "rt-multi-thread", "sync"] }
boringtun = "0.6"
tar = "0.4.41"
tar = "0.4.42"
console-subscriber = { version = "0.4.0", optional = true }


Expand Down
4 changes: 2 additions & 2 deletions mitmproxy-windows/redirector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ workspace = true
[target.'cfg(windows)'.dependencies]
mitmproxy = { path = "../../" }
tokio = { version = "1.40", features = ["macros", "net", "rt-multi-thread", "sync", "io-util"] }
anyhow = { version = "1.0.86", features = ["backtrace"] }
anyhow = { version = "1.0.89", features = ["backtrace"] }
windivert = "0.6.0"
lru_time_cache = "0.11.11"
log = "0.4.22"
env_logger = "0.11.5"
prost = "0.13.2"
prost = "0.13.3"
internet-packet = { version = "0.2.0", features = ["checksums"] }

[target.'cfg(windows)'.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion wireguard-test-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ publish.workspace = true
workspace = true

[dependencies]
anyhow = "1.0.86"
anyhow = "1.0.89"
data-encoding = "2.6.0"
boringtun = "0.6"
hex = "0.4"
Expand Down

0 comments on commit 2b864e8

Please sign in to comment.