Ivan “CLOVIS” Canet
Ivan “CLOVIS” Canet
The .pyi file generation itself should be quite simple (all the information is already available to PyO3 if we add the `#[type]`).I can try to prototype this, but I'm not...
I attempted to use the macros to generate the info, but they don't have access to type information so it's a bit limited. I'm currently looking at `rustdoc`'s JSON output,...
I'll update you on what I manage to do. I'll need you so Maturin can start that tool anyway :)
I forgot to link it here, and I see that many people follow this issue. I'm prototyping a way to generate python stubs (pyi), hopefully without needing any annotations. Please...
Hi, I'd be interested by that, but sadly I won't have the time for it until February at the soonest.
As an added note if anyone else needs this, if you write `implementation(npm("whatever", "_"))`, then run `refreshVersions` (not `refreshVersionsMigrate`), it will automatically fill in the latest version in `versions.properties` with...
Essentially the problem is that the current command selects the different combinations correctly, but executes `cargo test --workspace` for each of them instead of `cargo test -p `
Is there a workaround? I'm currently stuck on this, I'm surprised it's not possible to serialize nullable values.
In case anyone finds this after all this time, this works: ```kotlin /** * See [GitHub](https://github.com) */ ``` It doesn't work with the `@see`, though.
Here is an example of a use-case, from reading the contents of a REST response: ``` JsonObject values = new Request(GET, "/users/" + ID + "/") .get() .asObject(); // Use...