Georg Semmler
Georg Semmler
### Steps to reproduce the bug with the above code ``` git clone https://github.com/diesel-rs/diesel cd diesel git checkout v2.0.0 cargo semver-checks check-release --manifest-path diesel/Cargo.toml --baseline-version 1.4.8 ``` ### Actual Behaviour...
These two commits try to improve error messages generated by rustc if some trait bound is not fulfilled. The first commit simply improves the `#[debug_handler]` helper proc-macro attribute to set...
### Steps to reproduce the bug with the above code git clone https://github.com/diesel-rs/diesel cd diesel/diesel cargo semver-checks --baseline-rev v2.1.0 --only-explicit-features --features postgres --features sqlite --features mysql --features extras --features with-deprecated...
### Steps to reproduce the bug with the above code ``` git clone https://github.com/diesel-rs/diesel cd diesel/diesel cargo semver-checks --baseline-rev v2.0.4 --only-explicit-features --features postgres --features sqlite --features mysql --features extras --features...
I've tried the following code: ```rust use oracle::*; // oracle = "0.5.6" const CREATE_TEST_TABLE: &str = "CREATE TABLE test_table (\ text clob )"; fn repro(conn: Connection) { let _ =...
As requested [here](https://github.com/rust-lang/rust/pull/119888#issuecomment-1889492631)
This commit increases the maximal supported version of pq-sys to include support for 0.5. That release contains bundling support for libpq and support for building with address sanitizers enabled. This...
This fixes most of the broken cases for `#[auto_type]` by: * Changing all the free standing function types to use `PascalCase` instead of lower case names (There are only 10...
## Setup ### Versions - **Rust:** 1.71 - **Diesel:** 2.1.0 - **Database:** mysql - **Operating System:** fedora ### Feature Flags - **diesel:** mysql ## Problem Description Raw select queries with...
We have failing tests in diesel due to a breaking change in a chrono 0.4.32 I was able to minize it to the following code: ```rust use chrono::NaiveDate; fn main()...