kotauskas
kotauskas
The [`AppInfo`][appinfo] struct stores the `&'static str` type, which fails miserably if any of the fields are borrowed from an owned `String`. It should be changed to use an explicit...
[`std::path::Path`][std_path] is the standard library's way of storing immutably borrowed paths. [`sanitized`][fn_sanitized], [`app_dir`][fn_app_dir] and [`get_app_dir`][fn_get_app_dir], however, use normal borrowed strings and try to enforce path separators via documentation, which is...
I added a mention of the [BigBit.rs implementation](https://github.com/kotauskas/bigbit.rs " "), which implements BigBit for Rust.
I'm trying to run the game on Windows 10, installed from Cargo (version `1.3.0`). Here's the panic message: ```rust thread 'main' panicked at 'gl function was not loaded', C:\Users\vtonc\AppData\Local\Temp\cargo-installZ3bXFp\release\build\gfx_gl-cb309d1d55a63459\out/gl_bindings.rs:1506:13 stack...
The precompiled binaries offer the file `shaderc_combined.lib` (on Windows; the Linux ones are named accordingly), which is supposed to be the entire library in one statically linked file. The only...
PowerShell/`cmd.exe` encode files written by the `>` operator in little-endian UTF-16, which Cargo complains about immediately when you try to publish the crate. This PR removes mentions of said operator...
The — (`EM DASH`) symbol in my doc comment got converted to gibberish from my current code page (cp1251). This might mean that the tool reads files in cp1251 but...
Currently there's the `patch*` functions which accept from 0 to 9 arguments, which is a limitation when it comes to a larger amount, which is surely non-idiomatic and not practical...
**Is your feature request related to a problem? Please describe.** Currently, there is no way to restore handle ownership from a [`NamedPipeServer`][NPS] or [`NamedPipeClient`][NPC]. **Describe the solution you'd like** An...
I'm talking about lines 167 to 173 of `lib.rs`: ```rust #[repr(C)] #[derive(Copy, Clone)] #[doc(hidden)] pub struct TraitObject { pub data: *mut (), pub vtable: *mut (), } ``` The macro...