Dmitry Rodionov

Results 17 comments of Dmitry Rodionov

More variants to name it: `#[ormx(unmapped)]`, `#[ormx(mapped = false)]`, `#[ormx(column = "false")]`, `#[ormx(column = false)]`, `#[ormx(column = none)]`, `#[ormx(nocolumn)]`.

Maybe when building for production, you must use the `stable` channel by default. And only if `--nightly` is passed, then use nightly. Or maybe add `--default-channel` to use the current...

I have managed to modify [`const-concat` crate](https://docs.rs/const-concat/0.1.0/src/const_concat/lib.rs.html) to run on stable: ```rust pub const unsafe fn union_transmute(from: From) -> To where From: Copy, To: Copy, { union Transmute { from:...

Looks like `const_format::concatcp!` works good. > a dumb reason to reach for unsafe on the face of it. @abonander As far as I understood, you need to `panic!()` during compilation,...

I've just wrote my own [implementation](https://github.com/RoDmitry/concat_const/blob/main/src/lib.rs). Is it safe enough? And is it something you was looking for?

Feel free to give feedback in case you’re interested in merging only part of these changes.

[Here ](https://github.com/RoDmitry/actix_web-scylla-example) is an example. Simple enabling `log` feature for `tracing` does not help. If you comment out [this line](https://github.com/RoDmitry/actix_web-scylla-example/blob/238c2fbdd05f39b599bd21dcbd6143f13f27c229/src/main.rs#L15), then you will see more logs from `actix_web`.

It might be an issue of the `log` crate, because with `tracing` it works as it must. Thanks

Maybe add info somewhere in the docs, with recommendation to use `tracing`, or that `log` crate is not supported or something? Because it took me a lot of time to...

It says: "The driver uses", but does not recommend to use `tracing` over `log`. Also it would be more clear if it would mention that `log` crate is not supported,...