Skip to content

Commit

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

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.79` |
| [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` |
| [pretty-hex](https://github.com/wolandr/pretty-hex) | `0.4.0` | `0.4.1` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.74` | `0.1.77` |
| [image](https://github.com/image-rs/image) | `0.24.7` | `0.24.8` |
| [futures-util](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.10.1` | `0.10.2` |


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

Updates `once_cell` from 1.18.0 to 1.19.0
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](matklad/once_cell@v1.18.0...v1.19.0)

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

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

Updates `async-trait` from 0.1.74 to 0.1.77
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](https://github.com/dtolnay/async-trait/commits)

Updates `image` from 0.24.7 to 0.24.8
- [Changelog](https://github.com/image-rs/image/blob/master/CHANGES.md)
- [Commits](image-rs/image@v0.24.7...v0.24.8)

Updates `futures-util` from 0.3.29 to 0.3.30
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.29...0.3.30)

Updates `env_logger` from 0.10.1 to 0.10.2
- [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.1...v0.10.2)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: once_cell
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pretty-hex
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: async-trait
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: image
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: futures-util
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: env_logger
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Feb 1, 2024
1 parent c7a56cf commit 4f5fe8c
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 82 deletions.
118 changes: 48 additions & 70 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,21 +29,21 @@ rust-version.workspace = true
publish.workspace = true

[dependencies]
anyhow = { version = "1.0.75", features = ["backtrace"] }
anyhow = { version = "1.0.79", features = ["backtrace"] }
log = "0.4.18"
once_cell = "1"
pretty-hex = "0.4.0"
pretty-hex = "0.4.1"
rand_core = { version = "0.6.4", features = ["getrandom"] }
smoltcp = "0.10"
tokio = { version = "1.34.0", features = ["macros", "net", "rt-multi-thread", "sync", "time", "io-util", "process"] }
tokio = { version = "1.35.1", 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"
async-trait = "0.1.77"
console-subscriber = { version = "0.2.0", optional = true }
image = "0.24.6"
image = "0.24.8"
prost = "0.12.3"
tokio-util = { version = "0.7.10", features = ["codec"] }
futures-util = { version = "0.3.29", features = ["sink"] }
futures-util = { version = "0.3.30", features = ["sink"] }
lru_time_cache = "0.11.11"
internet-packet = { version = "0.2.0", features = ["smoltcp"] }

Expand Down
4 changes: 2 additions & 2 deletions mitmproxy-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ crate-type = ["cdylib"]

[dependencies]
mitmproxy = { path = "../" }
anyhow = { version = "1.0.75", features = ["backtrace"] }
anyhow = { version = "1.0.79", features = ["backtrace"] }
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.34", features = ["macros", "net", "rt-multi-thread", "sync"] }
tokio = { version = "1.35", features = ["macros", "net", "rt-multi-thread", "sync"] }
boringtun = "0.6"
tar = "0.4.40"
console-subscriber = { version = "0.2.0", optional = true }
Expand Down
Loading

0 comments on commit 4f5fe8c

Please sign in to comment.