Austin Bonander

Results 748 comments of Austin Bonander

Given how often we've run into semver issues with using external crates for data modeling, I think I'd rather just provide bespoke structs for mapping these types.

The types listed in that file are just the types that the macros can choose by default. Using type overrides in the query itself bypasses that list. There isn't a...

I believe this is a bug in CockroachDB, not SQLx. We never use anything but the unnamed portal, which should be replaced every time we send a `Bind` message or...

Are you using `rustup`? `cargo sqlx prepare` was coded with that assumption.

It depends on if you're using rustup's symlinks in `~/.cargo/bin` or directly invoking the installed cargo/rustc.

What's your default toolchain for the folder you're trying to run it in?

@eweb101 yeah sorry, I had a brainfart before but I just ran into this in a work project. The problem is that `cargo rustc` won't build both the library and...

We could fix this on our side by running `cargo rustc --lib` then one for each binary target we find in `cargo metadata`.

Hopefully a rebase will fix the CI failures.