Georg Semmler
Georg Semmler
I've tried to use the `cranlift` rust backend for a project that records code coverage for tests. For this I run the following command: ```sh RUSTFLAGS="-Zcodegen-backend=cranelift" cargo +nightly llvm-cov test...
I have a rather large project and I need to sometimes change `RUSTC_BOOTSTRAP` for some reasons. This causes `proc_macro2` to recompile, which in turn recompile a large portion of our...
This commit updates the composing application guide to use links to recent crates.io source code and to show `#[auto_type]` It also applies minor tweaks to the getting started guide
### Problem Consider the following example: - There is a crate "a" and "a_derives". These are separate as proc macros are required to live in a separate crate. - Crate...
### Problem Given the following `Cargo.toml` file: ```toml [package] name = "rocket_web_server" version = "0.1.0" edition = "2021" [dependencies] diesel = { version = "=2.2.2", features = ["postgres"] } [build-dependencies]...
I have a project that depends on `netcdf-src 0.4.0`. Trying to build that in the official rust-lang docker container with `cargo-zigbuild 0.19.1` and `zig 0.13.0` installed fails with the following...
This is similar to https://github.com/diesel-rs/diesel/pull/4170, it's just not a serve as the diesel change as we do not found any critical cast here. I also investigated the implementation in the...
Diesel currently supports the postgres array types. We do not provide built-in support for [various operators and methods](https://www.postgresql.org/docs/current/functions-array.html) available for these types. This is a tracking issue for adding support...
**rust-analyzer version**: rust-analyzer 0.3.1481-standalone (I've downloaded [this release](https://github.com/rust-lang/rust-analyzer/releases/download/2023-04-17/rust-analyzer-x86_64-unknown-linux-gnu.gz)) **rustc version**: rustc 1.68.0 (2c8cc3432 2023-03-06) **relevant settings**: None non-standard settings Rust analyzer fails to infer some diesel trait bounds even after...