Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 33 additions & 23 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions mitmproxy-contentviews/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ publish.workspace = true
workspace = true

[dependencies]
anyhow = { version = "1.0.99", features = ["backtrace"] }
anyhow = { version = "1.0.100", features = ["backtrace"] }
log = "0.4.28"
data-encoding = "2.8.0"
pretty-hex = "0.4.1"
Expand All @@ -21,7 +21,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
rmp-serde = "1.1"
protobuf = "3.7.2"
regex = "1.11.2"
regex = "1.11.3"
flate2 = "1.1"
protobuf-parse = "3.7"

Expand Down
8 changes: 4 additions & 4 deletions mitmproxy-highlight/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ publish.workspace = true
workspace = true

[dependencies]
anyhow = { version = "1.0.99", features = ["backtrace"] }
tree-sitter = "0.25.9"
tree-sitter-css = "0.23.2"
tree-sitter-highlight = "0.25.9"
anyhow = { version = "1.0.100", features = ["backtrace"] }
tree-sitter = "0.25.10"
tree-sitter-css = "0.25.0"
tree-sitter-highlight = "0.25.10"
tree-sitter-javascript = "0.25.0"
tree-sitter-xml = "0.7.0"
tree-sitter-yaml = "0.7.1"
Expand Down
6 changes: 3 additions & 3 deletions mitmproxy-linux/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ tun = { workspace = true, features = ["async"] }
aya = { workspace = true }
aya-log = { workspace = true }
tokio = { version = "1.47", features = ["macros", "net", "rt-multi-thread", "sync", "io-util", "signal"] }
anyhow = { version = "1.0.99", features = ["backtrace"] }
anyhow = { version = "1.0.100", features = ["backtrace"] }
log = "0.4.28"
env_logger = "0.11.5"
prost = "0.14.1"
internet-packet = { version = "0.2.0", features = ["checksums"] }
libc = "0.2.175"
libc = "0.2.176"
const-sha1 = "0.3.0"

[target.'cfg(target_os = "linux")'.build-dependencies]
anyhow = { version = "1.0.99", features = ["backtrace"] }
anyhow = { version = "1.0.100", features = ["backtrace"] }
aya-build = "0.1.2"
mitmproxy-linux-ebpf = { path = "../mitmproxy-linux-ebpf" }

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 = "3.4.0"
security-framework = "3.5.1"
2 changes: 1 addition & 1 deletion mitmproxy-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ crate-type = ["lib", "cdylib"]
mitmproxy = { path = "../" }
mitmproxy-highlight = { path = "../mitmproxy-highlight" }
mitmproxy-contentviews = { path = "../mitmproxy-contentviews" }
anyhow = { version = "1.0.99", features = ["backtrace"] }
anyhow = { version = "1.0.100", features = ["backtrace"] }
data-encoding = "2.8.0"
log = "0.4.28"
pyo3 = { version = "0.25", features = ["abi3", "abi3-py312", "anyhow"] }
Expand Down
2 changes: 1 addition & 1 deletion mitmproxy-windows/redirector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ workspace = true
[target.'cfg(windows)'.dependencies]
mitmproxy = { path = "../../" }
tokio = { version = "1.47", features = ["macros", "net", "rt-multi-thread", "sync", "io-util"] }
anyhow = { version = "1.0.99", features = ["backtrace"] }
anyhow = { version = "1.0.100", features = ["backtrace"] }
windivert = "0.6.0"
lru_time_cache = "0.11.11"
log = "0.4.28"
Expand Down
4 changes: 2 additions & 2 deletions src/network/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ async fn receive_icmp4_echo() -> Result<()> {
let mut input_icmpv4_packet = match Icmpv4Packet::new_checked(response.payload_mut()) {
Ok(p) => p,
Err(e) => {
return Err(anyhow!("Invalid ICMPv4 packet emitted: {}", e.to_string()));
return Err(anyhow!("Invalid ICMPv4 packet emitted: {}", e));
}
};

Expand Down Expand Up @@ -843,7 +843,7 @@ async fn receive_icmp6_echo() -> Result<()> {
let mut input_icmpv6_packet = match Icmpv6Packet::new_checked(response.payload_mut()) {
Ok(p) => p,
Err(e) => {
return Err(anyhow!("Invalid ICMPv6 packet emitted: {}", e.to_string()));
return Err(anyhow!("Invalid ICMPv6 packet emitted: {}", e));
}
};

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.99"
anyhow = "1.0.100"
data-encoding = "2.8.0"
boringtun = "0.6"
hex = "0.4"
Expand Down
Loading