Harrison Hogg

Results 15 issues of Harrison Hogg

```rust #[derive(Serialize)] #[typeshare] struct MyStruct { arc_mutex: Arc, box: Box } ``` The above currently outputs (in typescript) ```ts export interface MyStruct { arc_mutex: Arc, box: SomeOtherStruct, } ``` Similar...

For typescript generation, I'd have expected this ```rust #[derive(Deserialize, Serialize)] #[typeshare] enum Enum { Foo = 3, Bar = 2, Baz = 1, } ``` to be output as ......

improvement

👋 I've annotated a lot of things with `#[typeshare]`. However when running the generator I get errors, like... `thread '' panicked at 'failed to parse a rust type: ["usize"]'` `thread...

improvement

Hi 👋 I'm struggling to debug this query (even after reading the documentation... several times). I know it's highly likely I'm doing something wrong, but I'm wondering if it's possible...

### Is there an existing issue for this? - [X] I have searched the existing issues ### Current Behavior 👋 It would be really helpful to have a browser compatible...

Needs Triage