Evgeniy Dushistov

Results 67 issues of Evgeniy Dushistov

Extracted from comments that I add to cmake-rs: // Acording to // https://gitlab.kitware.com/cmake/cmake/-/issues/18959 // CMake does not support usage of the same build directory for different // compilers. The problem...

I use something like this in my `build.rs`: ```rust let dst = cmake::Config::new(Path::new("couchbase-lite-core")) .define("DISABLE_LTO_BUILD", "True") .define("MAINTAINER_MODE", "False") .define("ENABLE_TESTING", "False") .build_target("all") .build() .join("build"); ``` all fine, until user changed CC/CXX environment...

Thanks for this tool, to debug issue like desribed at rust-lang/cargo#4323 it would be nice to show in `cargo tree` output the features used for building each crate (it can...

It would be nice to have optional functionality to decode query as whole, example: ```rust while let Some(item) = query_iter.next()? { let (p1, p2, ...): (T1, T2, ...) = deserialize_with_serde(item)?;...

enhancement

1. Add test for transaction rollback

- [ ] Add note about Android SDK/NDK installation #279 - [x] Add note about `constructor = empty` #280 - [ ] Add note about clone/copy #274 - [ ]...

enhancement

PlainClass + return Option cause error, because of ForeingClassRef is not available in case of PlainClass.

bug
C++

In this case if accept foreign class by value, it should be cloned, `Option` should not cause "stealing" of value, see also #168

enhancement
Java/JNI

Insert proper `#include` into generated code instead of force user to include them into proper order. Should be for circular dependency case.

enhancement
C++