Dan Kolsoi
Dan Kolsoi
Hi, thanks for all your hard work. Rocket is awesome! I think it would be an absolute killer feature if route/endpoint API documentation could somehow be generated right from Rocket....
Installed via `cargo install bandwhich` ```shell Error: Could not initialize the DNS resolver. Are you offline? Reason: ResolveError { inner: Custom { kind: Other, error: "Error parsing resolv.conf: InvalidOption(17)" }...
With the default configuration, newlib will be missing four math functions' extern C "declarations" in rust: ```rust error[E0425]: cannot find function `fabsl` in this scope --> src/cephes_subrl.rs:39:24 | 39 |...
```rust error[E0277]: the trait bound `f128::f128: core::ffi::sealed_trait::VaArgSafe` is not satisfied --> src/vfwprintf.rs:789:44 | 789 | ap.arg::().to_f64().unwrap() | ^^^ the trait `core::ffi::sealed_trait::VaArgSafe` is not implemented for `f128::f128` error: aborting due to...
This is the tracking issue for generated code which requires nightly to run: * ~Assembly - `asm` - https://github.com/rust-lang/rust/issues/29722~ [`asm!`](https://doc.rust-lang.org/core/arch/macro.asm.html) stabilized since 1.59.0 * Intrinsics for atomic operations - `core_intrinsics`...
PL seems to have an `OrderedMap`, so it seems like `OrderedSet` would be a convenient and straightforward addition
Hi, I'm trying to recreate some bitfield structs from C in rust with C FFI compatibility in mind. I'm having some trouble. Here are some examples: Suppose we have this...
I've tried both 6.0.1 and 7.0.0 on a fresh Ubuntu 18.04 build with both 0.2.1 and 0.2.2-alpha.1. When I `llvmenv build-entry x` I get this error log: https://gist.githubusercontent.com/TheDan64/477a42936cdca885368ff8969e3ab11d/raw/f88f656a667f8b2143415849c915028450c59596/llvmerr.txt
Would be a very useful flag for building LLVM for debugging
It seems like `_mm_empty`, `_mm_madd_pi16`, `_mm_xor_si64` and a handful of other simd functions don't exist, neither in stable nor behind the stdsimd feature. In fact, it seems like the remaining...