Ron Hashimoto

Results 7 issues of Ron Hashimoto

### Summary wapm.io says `Name, description and app icon are handled entirely in the CLI.` but I can't find any instructions about app icons in the wapm documentation.

My project uses `deltachat-core-rust` as a dependency and I encountered a build error in a specific situation. When some crates in the dependency tree enables `derive` feature in `strum` crate,...

```rust use parry2d::math::*; use parry2d::query::{Ray, RayCast}; use parry2d::shape::Segment; fn main() { // never intersect each other let ray = Ray::new(Point::new(0.0, 0.0), Vector::new(1.0, 0.0)); let segment = Segment { a: Point::new(10.0,...

Hi. I noticed that currently there was no actively maintained mime-type parsing library for Rust so I made a new `mediatype` crate designed for the latest Rust ecosystem. This is...

This crate depends on `ansi_colours`, which is licensed under the LGPL-3.0-or-later. I think it's confusing that an MIT-licensed crate has copyleft dependency.

Support integer literals expressed in hexadecimal, octal and binary in `skill-calc`. ## Example ### Input ``` 126 + 0xFF * 0o12 - 0b111011 ``` ### Output ``` 2617 ```

enhancement
good first issue
skill-calc

Add coin flipping to `skill-dice`. ## Example ### Input `flip a coin` `heads or tails` `🪙` ### Output ``` 🪙 Tails ``` ``` 🪙 Heads ```

enhancement
good first issue
skill-dice