cargo upgrade --incompatible

This commit is contained in:
Bryan Stitt 2023-07-27 12:18:33 -07:00
parent ebfb4c6386
commit 32a73a0c53
5 changed files with 560 additions and 307 deletions

857
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -11,6 +11,6 @@ path = "src/mod.rs"
[dependencies]
ethers = { version = "2.0.8", default-features = false }
sea-orm = "0.11.3"
sea-orm = "0.12.1"
serde = "1.0.177"
ulid = "1.0.0"

View File

@ -11,10 +11,10 @@ path = "src/lib.rs"
[dependencies]
tokio = { version = "1.29.1", features = ["full", "tracing"] }
chrono = "0.4.26"
sea-orm = { version = "0.11.3", features = ["with-chrono"]}
sea-orm = { version = "0.12.1", features = ["with-chrono"]}
[dependencies.sea-orm-migration]
version = "0.11.3"
version = "0.12.1"
features = [
# Enable at least one `ASYNC_RUNTIME` and `DATABASE_DRIVER` feature if you want to run migration via CLI.
# View the list of supported features at https://www.sea-ql.org/SeaORM/docs/install-and-config/database-and-async-runtime.

View File

@ -66,7 +66,7 @@ pub async fn websocket_handler(
/// Public entrypoint for WebSocket JSON-RPC requests that uses all synced servers.
/// Queries all synced backends with every request! This might get expensive!
#[debug_handler]
// #[debug_handler]
pub async fn fastest_websocket_handler(
Extension(app): Extension<Arc<Web3ProxyApp>>,
InsecureClientIp(ip): InsecureClientIp,

View File

@ -391,7 +391,7 @@ impl OpenRequestHandle {
}
Err(err) => {
warn!(
%method,
?method,
?params,
?err,
"failed parsing eth_call params. unable to save revert",