Luca Cappelletti

Results 85 issues of Luca Cappelletti

This PR addresses discussion #4609 Still have to: * [x] Implement also: * [x] `impl CanInsertInSingleQuery for Rc` * [x] `impl CanInsertInSingleQuery for Arc` * [x] `impl Migration for Rc...

This is about: - [ ] A typo - [ ] Inaccurate/misleading documentation (e.g. technically incorrect advice) - [x] Undocumented code - [x] Outdated documentation - [ ] Other **Problem**...

documentation

At the time of writing, a `Timestamp with Time Zone` is handled as a numerical value, which is of course exactly what postgres does. ```rust pub type TimestampTz = int64;...

Hi, With PR #2068, I have added support for the binary representation for `varlena` types. I would like to also add support for fixed-size types, but I am not sure...

[Mem-dbg](https://crates.io/crates/mem_dbg) is a crate that allows to compute the size of a struct. I have added the derives through the crate as an optional feature, so as to use it...

As described in discussion #4899

As per title, this simple PR adds the `#[no_std]` marker to the `csv-core` crate. This way, if someone happens to add any std stuff in the crate, they will immediately...

Makes the `serde` dependency optional (enabled by default) by gating all serde-related functionality behind a `serde` feature flag. This PR will make it possible to use `csv` in other crates...

Hi, I see that there existed a PR (https://github.com/BurntSushi/rust-csv/pull/175) attempting to add this feature, and several comments are in that PR requesting this feature. Nevertheless, the PR was rather old...