Matthias Geier
Matthias Geier
I might be missing something, but isn't that `return` unnecessary? Since this is one of the differences between the `Result` and the `Option` example, it might imply to some readers...
The `pygments_style` includes a background color, which is currently ignored by the `alabaster` theme. This PR changes that, but it still honors the `pre_bg` and `code_highlight_bg` theme options. BTW, why...
One example is installed into the default location and it uses a single header file. The other example is installed into a subdirectory and uses a bunch of more complicated...
I was hoping to get the right target automatically, since I'm using `cargo` from MSYS2, which should know that it uses the GNU toolchain. Strangely, when I'm using the MSYS2...
Currently, the `--prefix` has to be specified explicitly: https://github.com/lu-zero/cargo-c/blob/97a9d532dbcc4e59dee5631fa459202e76db556f/.github/workflows/example-project.yml#L116 It would be great if `/mingw64` could be used as default on MSYS2/MinGW64, since `/usr/local` doesn't seem to be searched by...
If my `Cargo.toml` does *not* contain a `[features]` section defining the `capi` feature, the header file is generated correctly, but the dynamic library does not contain the expected symbols. The...
This was done in #122 for Linux and macOS, but not for Windows. Currently, a `Makefile` is used, but probably something else is needed on Windows ...
I think this would be a reasonable thing to do: ``` cd example-project cargo test --all-features ``` However, it doesn't work, the tests fail. OTOH, if I run ``` cargo...
It would be nice to be able to use `Sndfile` like this: ``` python from scikits.audiolab import Sndfile with Sndfile("test.wav") as f: # do something with f print(f) # no...
Sorry for abusing your issue tracker, this is no bug report but rather an advertisement for my Sphinx extension [nbsphinx](https://nbsphinx.readthedocs.io/) that allows using Jupyter notebooks as Sphinx source files. And...