chore: upgrade all dependencies#3354
chore: upgrade all dependencies#3354zvolin wants to merge 1 commit intozvolin/bump-rust-toolchainfrom
Conversation
| use super::*; | ||
|
|
||
| pub async fn bind_ephemeral() -> (SocketAddr, TcpListener) { | ||
| let listener = TcpListener::bind(("127.0.0.1", 0)) |
There was a problem hiding this comment.
that's literally what warp::Server::bind does now, create new tokio::TcpListener and calls incoming on the Server. All the other bind_xyz methods were removed
| "expected a list of name-value pairs", | ||
| )); | ||
| }; | ||
| meta_list.parse_nested_meta(|meta| { |
There was a problem hiding this comment.
https://github.com/dtolnay/syn/releases/tag/2.0.0
a new parsing library called syn::meta, and the parse_nested_meta method on Attribute
| rand = { workspace = true } | ||
| rayon = { workspace = true } | ||
| rusqlite = { workspace = true, features = ["bundled", "array", "hooks"] } | ||
| rusqlite = { workspace = true, features = ["bundled", "array", "hooks", "fallible_uint"] } |
There was a problem hiding this comment.
sqlite can only store numbers up to i64::MAX, maybe we should consider checking if we shouldn't migrate the code to ensure that is always the case? This feature flag gives preserves current logic tho
| //! Pathfinder build script. | ||
| //! | ||
| //! Just sets up `vergen` to query our git information for the build. | ||
| //! Just sets up `vergen_gitcl` to query our git information for the build. |
There was a problem hiding this comment.
split into multiple crates now
https://github.com/rustyhorde/vergen/releases/tag/vergen_9.0.0-beta.0
We cannot upgrade
randto0.10becauseprimitive-typeslock us at0.8.5. This also blocksfakeupgrade.