Ryan Leckey
Ryan Leckey
@koute Really neat start you have here. I was considering doing something like this. I'm wondering how much you're committed to this and where you see this library going. I...

Here is an example repository: https://github.com/mehcode/cargo-outdated-bug-patch --- ``` ❯ cargo +nightly outdated error: Direct dependency reqwest not found for package cargo_outdated_bug ``` ---- This is using the most recent `cargo-outdated`...
@zargony I'm working on [`ide-rust`](https://github.com/mehcode/atom-ide-rust/issues) in conjunction with the Atom IDE and Rust Dev Tools movements. I have some pain points with `language-rust` and I was taking a look but...
https://github.com/kennytm/mbox seems to have more 👀 on it then `malloc_buf` and given that this is a pretty niche area I think its worth it to switch. `mbox` also seems to...
Ideally I'd like to call this like ``` tsc-files --tsc vue-tsc ... ```
It would be a useful abstraction to allow an unknown-currency `NaiveMoney` type that works as follows: ```rust let money: NaiveMoney = NaiveMoney::from_minor(10); let money: Money = money.with_currency(&USD); ``` - `NaiveMoney`...
Notable differences - Prepared statements are invalid after a `SYNC` (so they can be used but may not be cached). - Apparently does not support the startup parameter `IntervalStyle`. That...
Idea: It would be interesting to select rows from the database and instantly and easily serialize to a data format. Blocked on #181
https://docs.rs/geo https://www.postgresql.org/docs/current/datatype-geometric.html * `POINT` -> `geo::Coordinate` * `LINE` -> `geo::Line` * `LSEG` -> `geo::Line` * `BOX` -> `geo::Rect` * `PATH` -> `geo::LineString` * `POLYGON` -> `geo::Polygon`