Skip to content

Commit

Permalink
Update CoW dependencies to v2.281.0 (#79)
Browse files Browse the repository at this point in the history
Updated CoW dependencies to v2.281.0

Co-authored-by: Your Name <[email protected]>
  • Loading branch information
github-actions[bot] and Your Name authored Oct 23, 2024
1 parent 4bc5424 commit 3a09f04
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 84 deletions.
104 changes: 28 additions & 76 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ tower-http = { version = "0.4", features = ["trace"] }
tracing = "0.1"
web3 = "0.19"

contracts = { git = "https://github.com/cowprotocol/services.git", tag = "v2.280.0", package = "contracts" }
ethrpc = { git = "https://github.com/cowprotocol/services.git", tag = "v2.280.0", package = "ethrpc" }
observe = { git = "https://github.com/cowprotocol/services.git", tag = "v2.280.0", package = "observe" }
shared = { git = "https://github.com/cowprotocol/services.git", tag = "v2.280.0", package = "shared" }
dto = { git = "https://github.com/cowprotocol/services.git", tag = "v2.280.1", package = "solvers-dto" }
rate-limit = { git = "https://github.com/cowprotocol/services.git", tag = "v2.280.0", package = "rate-limit" }
number = { git = "https://github.com/cowprotocol/services.git", tag = "v2.280.0", package = "number" }
contracts = { git = "https://github.com/cowprotocol/services.git", tag = "v2.281.0", package = "contracts" }
ethrpc = { git = "https://github.com/cowprotocol/services.git", tag = "v2.281.0", package = "ethrpc" }
observe = { git = "https://github.com/cowprotocol/services.git", tag = "v2.281.0", package = "observe" }
shared = { git = "https://github.com/cowprotocol/services.git", tag = "v2.281.0", package = "shared" }
dto = { git = "https://github.com/cowprotocol/services.git", tag = "v2.281.0", package = "solvers-dto" }
rate-limit = { git = "https://github.com/cowprotocol/services.git", tag = "v2.281.0", package = "rate-limit" }
number = { git = "https://github.com/cowprotocol/services.git", tag = "v2.281.0", package = "number" }

[dev-dependencies]
glob = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion src/tests/mock/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ impl Debug for Path {

pub fn abort_on_panic() {
let previous_hook = std::panic::take_hook();
let new_hook = move |info: &std::panic::PanicInfo| {
let new_hook = move |info: &std::panic::PanicHookInfo| {
previous_hook(info);
std::process::exit(1);
};
Expand Down

0 comments on commit 3a09f04

Please sign in to comment.