Joseph Perez

Results 50 issues of Joseph Perez

### Describe the feature As written in the title, a lot of types don't implement `fmt::Debug`, but as written in [Rust documentation](https://doc.rust-lang.org/std/fmt/index.html#fmtdisplay-vs-fmtdebug): > [fmt::Debug](https://doc.rust-lang.org/std/fmt/trait.Debug.html) implementations should be implemented for all...

new feature

It uses https://github.com/scylladb/scylla-cdc-java/pull/72

Commit https://github.com/scylladb/scylla-cdc-source-connector/commit/80b7117af97ce6bda360319d70968a97252d826d introduced a bug by updating `flogger` dependency version from 0.5.1 to 0.7.4. Indeed, these lines of code https://github.com/scylladb/scylla-cdc-source-connector/blob/master/src/main/java/com/scylladb/cdc/debezium/connector/ScyllaConnector.java#L36-L38 trigger ``` java.lang.NoSuchMethodException: com.google.common.flogger.backend.log4j.Log4jBackendFactory.getInstance() ```

`CachingSession` is currently suboptimal, especially when using it `&'static str` (and I suppose it's the main use case), mostly for two reasons: - `Into` implies a string cloning in case...

Complete rewriting using only Rust code (and Python stub)

### Describe the feature Currently, Zenoh Python API is built using the PyO3 `abi37` features, which means it uses the stable ABI of Python 3.7. It allows supporting all Python...

### Describe the feature The feature already exists in the Python API https://github.com/eclipse-zenoh/zenoh-python/blob/151615351846c214937ab5c6205462755a78a16e/zenoh/value.py#L44-L67. However, in `protocol_changes`, the encoding has been formally detached from payload. Quoting @milyin: > As far as...

Loom integration lacks `UnsafeCell`, because the way I was using them was not compatible with it. However, testing with MIRI made me [realize][https://github.com/rust-lang/miri/issues/2920) that my use was bad, and I...

The current prelude exposes all the types of the API. This is considered as a bad practice, as many of these names are quite common and could conflict. Most of...