jakemoran
jakemoran
I looked into this a bit and it seems like the problem is occurring here: https://github.com/PyO3/rust-numpy/blob/8bfbb276cb809130cf99a094fdc14a911bc72bda/src/array_like.rs#L152-L161 which attempts to extract an array-like with dynamic dimensionality as a `Vec`. If the...
No worries! PR created. This is my first contribution here so let me know if I missed anything.
I think this is related to some functionality I touched on in #491, where there is an attempt to extract `PyArrayLike1` from `Vec`. I'd agree that this is probably not...
I have this issue too, since I like to keep my internal types and corresponding `Tsify` types separate using a pattern like: ```rust struct MyType { ... } #[derive(Tsify, Serialize,...