Skip to content

Commit

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

| Package | From | To |
| --- | --- | --- |
| [pretty-hex](https://github.com/wolandr/pretty-hex) | `0.3.0` | `0.4.0` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.33.0` | `1.34.0` |
| [prost](https://github.com/tokio-rs/prost) | `0.12.1` | `0.12.3` |
| [windows](https://github.com/microsoft/windows-rs) | `0.51.1` | `0.52.0` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` |
| [data-encoding](https://github.com/ia0/data-encoding) | `2.4.0` | `2.5.0` |
| [internet-packet](https://github.com/mhils/internet-packet) | ``9d706e0`` | ``41a0b67`` |


Updates `pretty-hex` from 0.3.0 to 0.4.0
- [Commits](wolandr/pretty-hex@v0.3.0...v0.4.0)

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

Updates `prost` from 0.12.1 to 0.12.3
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Commits](tokio-rs/prost@v0.12.1...v0.12.3)

Updates `windows` from 0.51.1 to 0.52.0
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](microsoft/windows-rs@0.51.1...0.52.0)

Updates `env_logger` from 0.10.0 to 0.10.1
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.10.0...v0.10.1)

Updates `data-encoding` from 2.4.0 to 2.5.0
- [Commits](https://github.com/ia0/data-encoding/commits)

Updates `internet-packet` from `9d706e0` to `41a0b67`
- [Commits](mhils/internet-packet@9d706e0...41a0b67)

---
updated-dependencies:
- dependency-name: pretty-hex
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: prost
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: windows
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: env_logger
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: data-encoding
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: internet-packet
  dependency-type: direct:production
  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 Dec 2, 2023
1 parent 613b631 commit 57b41e6
Show file tree
Hide file tree
Showing 5 changed files with 106 additions and 49 deletions.
135 changes: 96 additions & 39 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,16 +32,16 @@ publish.workspace = true
anyhow = { version = "1.0.75", features = ["backtrace"] }
log = "0.4.18"
once_cell = "1"
pretty-hex = "0.3.0"
pretty-hex = "0.4.0"
rand_core = { version = "0.6.4", features = ["getrandom"] }
smoltcp = "0.10"
tokio = { version = "1.33.0", features = ["macros", "net", "rt-multi-thread", "sync", "time", "io-util", "process"] }
tokio = { version = "1.34.0", features = ["macros", "net", "rt-multi-thread", "sync", "time", "io-util", "process"] }
boringtun = { version = "0.6", default-features = false }
x25519-dalek = "=2.0.0-rc.3"
async-trait = "0.1.74"
console-subscriber = { version = "0.2.0", optional = true }
image = "0.24.6"
prost = "0.12.0"
prost = "0.12.3"
tokio-util = { version = "0.7.10", features = ["codec"] }
futures-util = { version = "0.3.29", features = ["sink"] }

Expand All @@ -50,7 +50,7 @@ futures-util = { version = "0.3.29", features = ["sink"] }
# smoltcp = { git = 'https://github.com/mhils/smoltcp', rev = 'f65351adfa92db5193f368368cb668bac721fe43' }

[target.'cfg(windows)'.dependencies.windows]
version = "0.51.1"
version = "0.52.0"
features = [
"Win32_Foundation",
"Win32_Graphics_Dwm",
Expand Down
4 changes: 2 additions & 2 deletions mitmproxy-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ crate-type = ["cdylib"]
[dependencies]
mitmproxy = { path = "../" }
anyhow = { version = "1.0.75", features = ["backtrace"] }
data-encoding = "2.4.0"
data-encoding = "2.5.0"
log = "0.4.18"
once_cell = "1"
pyo3 = { version = "0.19.2", features = ["abi3", "abi3-py310", "extension-module", "anyhow"] }
pyo3-asyncio = { version = "0.19.0", features = ["tokio-runtime"] }
pyo3-log = "0.9.0"
rand_core = { version = "0.6.4", features = ["getrandom"] }
tokio = { version = "1.33", features = ["macros", "net", "rt-multi-thread", "sync"] }
tokio = { version = "1.34", features = ["macros", "net", "rt-multi-thread", "sync"] }
boringtun = "0.6"
tar = "0.4.40"
console-subscriber = { version = "0.2.0", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions mitmproxy-windows/redirector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ publish.workspace = true

[target.'cfg(windows)'.dependencies]
mitmproxy = { path = "../../" }
tokio = { version = "1.33", features = ["macros", "net", "rt-multi-thread", "sync", "io-util"] }
tokio = { version = "1.34", features = ["macros", "net", "rt-multi-thread", "sync", "io-util"] }
anyhow = { version = "1.0.75", features = ["backtrace"] }
windivert = "0.6.0"
lru_time_cache = "0.11.11"
log = "0.4.18"
env_logger = "0.10.0"
prost = "0.12.0"
env_logger = "0.10.1"
prost = "0.12.3"
internet-packet = { git = "https://github.com/mhils/internet-packet.git", 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 @@ -11,7 +11,7 @@ publish.workspace = true

[dependencies]
anyhow = "1.0.75"
data-encoding = "2.4.0"
data-encoding = "2.5.0"
boringtun = "0.6"
hex = "0.4"
smoltcp = "0.10"

0 comments on commit 57b41e6

Please sign in to comment.