Michael P. Jung

Results 203 comments of Michael P. Jung

I'm using serpy in one of my projects and now I have to use DRF for deserialization and serpy for serialization. Having to define the same schema twice is rather...

Please give the `feature/diesel-2` branch a try: https://github.com/bikeshedder/deadpool/tree/feature/diesel-2 If needed I can release a RC on crates.io as well. If there is no hurry you can just add this branch...

@elpiel I just added a PR adding Debug to all `deadpool-postgres` types. Would this be helpful to you? - #206

As you probably noticed I already prepared this change by replacing the `available: AtomicIsize` by an `users: AtomicUsize`. That change is not part of any published version of the crate...

I've started working on a branch which adds this feature: https://github.com/bikeshedder/deadpool/tree/feature/postgres-config-from-url It's a breaking change and I'd first like to decide on #74 which is related to changing the structure...

I will have a look tomorrow. I sure am open to merging this functionality. Maybe we find a way to somehow ensure feature parity with the `GenericClient` from `tokio-postgres`. I...

When running the tests you had to add `--features serde` since you depend on serde in the tests. I just fixed that by making the `serde` feature non-optional. Since you...

This closes #121

While this implementation works as expected it's kinda silly. It locks the mutex once to retrieve the objects but locks the mutex once per object returned. It also updates the...

This idea has been brought up before and I have been thinking about this for a long time now. Up until now I didn't really have a idea how to...