Ryan Leckey

Results 86 issues of 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...

![screen shot 2017-06-15 at 10 56 07 pm](https://user-images.githubusercontent.com/753919/27213788-d9217b72-521d-11e7-9178-a51f7b7b3a80.png)

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`...

P1: required to have
T: bug
C: manifest parsing
C: upstream

@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...

enhancement
discussion

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...

enhancement
db:postgres
db:other

Idea: It would be interesting to select rows from the database and instantly and easily serialize to a data format. Blocked on #181

help wanted
proposal

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`

enhancement
good first issue
db:postgres
E-medium