Evgeniy Dushistov

Results 67 issues of Evgeniy Dushistov

There is problem in interpreting results of `cargo test` at first glance, for example rust-lang/cargo#4324 . It would be nice if `cargo.el` parse results of `cargo test`, I mean lines...

If create dummy crate with `cargo new foo`, and create subdirectory `foo/tests` ```sh cargo new foo && cd foo && mkdir tests && touch tests/dummy.rs ``` with such dummy context:...

It would be nice to add note in README about Inflector vs https://github.com/withoutboats/heck . Looks like heck is more popular while Inflector has more functionality, any other difference? I think...

### Input C/C++ Header ```C++ #pragma once #include void f(std::string_view); ``` ### Bindgen Invocation ``` $ bindgen test.h -- -x c++ -std=c++17 ``` ### Actual Results ``` #[repr(C)] #[derive(Debug, Copy,...

I want convert all enums that name matches "C4.*" as `newtype-enum`, except `enum C4ReplicatorActivity`, which I want convert as `rustified-enum`. Plus I want convert `enum FLError` as `newtype-enum`. I tried...

There is supported by clang extension to mark pointers as nonnull ### Input C/C++ Header ```C++ #if defined(__clang__) #define C4NONNULL __attribute((nonnull)) #else #define C4NONNULL /**/ #endif void f(int *p C4NONNULL);...

enhancement
help wanted

when bindgen (0.59.2) translate this to Rust ```C++ typedef void (* C4NULLABLE C4LogCallback)(C4LogDomain, C4LogLevel, const char *fmt, va_list args); void c4log_writeToCallback(C4LogLevel level, C4LogCallback callback, bool preformatted) C4API; ``` I got...

With `0.3.10` when I compile "hello world" I got error, with `0.3.9` all works fine. The problem in cflags in compiler_builtins compilation, I set them to `-march=armv5te -mtune=arm926ej-s -mfpu=vfp -mfloat-abi=hard`,...

I am trying to optimize my dependency tree, and see that rusqlite depend on hashlink, which depend on hashbrown, ahash, getrandom. Is it slightly overkill for "lru cache" with size...

As mention on #747 I am working on wrapper for C++ (static) library that include sqlite3.o. So I need to tell rusqlite that I already has sqlite3.o and `in_gecko` comes...