ermakov-oleg
ermakov-oleg
Hello, when do you plan to release these changes?
Thank you! I already looked at the diff with the latest version and used `v0.1.10-68-g85f6dda`, everything works fine on this one.
I agree, this is an important feature for http proxies. And now I guess I'll just have to copy the crate... @seanmonstar Is this project alive at all? No commits...
Thank you so much for your work on this. It's truly an essential addition that's been missing from the standard library. While testing this PR, I stumbled upon a scenario...
And one more example with an error: ```python def test_get_type_hints_unbound_typevar(self): class Foo(Generic[T]): x: list[T] y: KT self.assertEqual(gth(Foo), {'x': list[T], 'y': KT}) # ok self.assertEqual(gth(Foo[int]), {'x': list[int], 'y': KT}) # error...
@andrewhavck Builds on Rust 1.72 are failing due to the latest `boring-sys` release (v4.10.*), where `bindgen` was updated (see: https://github.com/cloudflare/boring/pull/273). Any suggestions on how to resolve this or work around...
@andrewhavck maybe there are some other comments or something that might be blocking the merge of these changes?
Hello! Currently, this isn’t supported, but I’m open to contributions for this feature.
Hi again @aaronsteers! I’ve just released [v1.16.0](https://github.com/ermakov-oleg/serpyco-rs/releases/tag/v1.16.0), which might cover the `additionalProperties=true` use case you asked about earlier. Would be great if you could give it a try and see...
Hi, Yes, I agree that it can be faster if there is no need to generate intermediate python objects. At the early stages of development, I already tried this approach,...