Joel Höner

Results 17 issues of Joel Höner

This PR updates most dependencies to their latest version. I didn't touch `syn` and `quote` because the update to `v1` requires a substantial amount of reworks: simply updating the version...

The library should provide users with a way to escape untrusted string inputs in a way that makes it safe to insert them into queries. According to the documentation, it...

enhancement

There's a bunch of FHS packages in nixpkgs that essentially ship half a distro with them and massively pollute the output when searching for packages that provides common command line...

This PR exposes the following two DB options related to BlobDB caching: https://github.com/facebook/rocksdb/blob/f6fd4b9dbd15dba36f7e5ad23de407b5c26b1460/include/rocksdb/advanced_options.h#L1129-L1148

Originally tested with v0.21.0 but also repros with `master`. Add this test case to `tests/test_raw_iterator.rs`: ```rust #[test] pub fn test_forgot_seek() { let n = DBPath::new("test_forgot_seek"); { let db = DB::open_default(&n).unwrap();...

The following reproducer test case: ```diff diff --git a/rkyv_test/src/test_alloc.rs b/rkyv_test/src/test_alloc.rs index 93840cc..65bcf7d 100644 --- a/rkyv_test/src/test_alloc.rs +++ b/rkyv_test/src/test_alloc.rs @@ -1405,6 +1405,20 @@ mod tests { let value = ExampleEnum::A("hello world".to_string()); test_archive(&value);...

Defines, include-guards and CMake options don't have a consistent naming scheme right now. We should change that.

C-cleanup
P-low