mehcode / actix-diesel

Integrate Diesel into Actix (and Actix Web) cleanly and efficiently.
Apache License 2.0
85 stars 16 forks source link

please update futures-rs to 0.3.1 #3

Open Silentdoer opened 4 years ago

Silentdoer commented 4 years ago

like title

mehcode commented 4 years ago

I have no intention to do as I no longer use it so but I would accept a PR.

viktor-ku commented 4 years ago

Hi, @mehcode! Can I ask what are you using instead? Is it actix with diesel, but some other combination to make things easier, or did you switch to another web framework/language?

I am trying to choose right things to write my next project, would be great if you could give a small advice :)

Thank you

mehcode commented 4 years ago

@viktor-ku We are using https://github.com/launchbadge/sqlx/ now (which works fine with actix directly).


If you'd like to stay on Diesel, there is https://crates.io/crates/async-diesel and https://crates.io/crates/tokio-diesel available now. I'm not sure this actix-specific crate is important any more.

viktor-ku commented 4 years ago

@mehcode thanks a lot

viktor-ku commented 4 years ago

@mehcode do you know by any chance anything like that for Redis? I can't find anything that will work with pools and async out of the box.

mehcode commented 4 years ago

Funny you should mention that.

https://docs.rs/redisx/0.0.2/redisx/

Recently for a production use case we needed a redis client that was async; supported both TLS and authentication; and, has a connection pool.

Our needs for the client were super basic beyond that.

I was hoping something else would pop up but we can open source that if nothing has.

viktor-ku commented 4 years ago

@mehcode it would be fantastic if you could do that. I am looking for really basic functionality that I can use with actix. Nothing fancy. I can help maintaining the crate if you decide to open source it.