June
June
> If you run rustfmt --config=error_on_unformatted=true with the following input: That's good to know about, thanks! To be clear, I wouldn't expect it to move the comment or the semicolon....
Makes sense. Unfortunately, this isn't an option since I'm dealing with custom selects and the structure isn't predictable—so users will specify a field by one name and then see it...
Just saw [this session lifecycle method](https://docs.rs/actix-session/latest/actix_session/config/struct.SessionMiddlewareBuilder.html#method.session_lifecycle) for `SessionMiddleware`. This seems perfect for this use case, if there's a way to set this per user login.
Related to the codegen but probably a larger issue is that even if you change the columns to refer to the correct objects, the relation doesn't get the correct tables...
I can also reproduce this issue with a `localhost` cookie. I found this: > Fixed in https://github.com/python/cpython/pull/30108 for 3.11. from https://github.com/python/cpython/issues/90233 So I would try 3.11 and see if that...
Looks like this is potentially the same issue as https://github.com/ThouCheese/cloud-storage-rs/issues/115, which is fixed on master but not released to crates.io. You can use the git version in your Cargo.toml and...
I have this same issue. Spent some time trying to track it down without a lot of luck. I determined that it's only when the "sqlx-mysql" feature is enabled. The...
> Update: I think I found the root cause: > > As of `identity-v0.7.1`, actix-identity requires actix-session 0.9.0 > > https://github.com/actix/actix-extras/blob/db2193b8c5c6e8f40b9d85d7ee8618baa4af7fb5/actix-identity/Cargo.toml#L22 > > I'm guessing that since `actix-session 0.10.0` also...
Oh neat, thanks for the clarification! Unfortunately, my actual code is more affected by the inconsistency with the traits. It's something like this: ```rust /// Trait from an external library...
You're exactly right, it's a false positive in that case - sorry I was unclear. To clarify - in my codebase I have some instances where `unused_async` fns are callees,...