Results 64 comments of Kurt Wolf

I'd love to see this too. FWIW, it's possible to hack this redirection today in nightly Rust: ```rust #![feature(internal_output_capture)] #[wasm_bindgen] pub fn start() { let z = Arc::new(Mutex::new(Vec::new())); let mut...

For anyone who encounters this issue today, you need a branch where the serde version matches your other dependencies. I took a similar commit (that uses no compiler feature flag)...

I implemented the `cargo add crate1 +feat1 +feat2 crate2` syntax in a fork. https://github.com/kurtbuilds/cargo If there's interest, I can create a PR to merge.

I figured out a workaround that appears to work seamlessly. I built a cargo subcommand that loads dotenv files: https://crates.io/crates/cargo-dotenv I then configured the `cargo` commands in IntelliJ to use...

I created a small library for this (postgres only): https://crates.io/crates/sqlx-pgrow-serde

FYI I added this in my fork: https://github.com/kurtbuilds/toml-cli You have to `git clone` it, then `cargo install --path .`, since the fork isn't on crates.io. Since this project appears to...

Love it. I'll review sometime this week.

Thanks for these. I responded in the cargo fmt PR you opened. Hopefully that isn't a blocker for this contribution, as it's a welcome addition to the library.

Can you elaborate on why you need the composite primary key instead of adding an `id` column and having a unique constraint on `(name, device_name)`? It's possible in SQL, so...

What actually happens when you create a `ormlite::Model` for the `blockdata` table? If you put primary_key on the `metadata_id` column, I expect the `fetch_one` method will return a random row...