Peter L

Results 27 issues of Peter L

It would be nice if Site ID was not limited to `u32` as a datatype, and instead could be anything that implements the traits needed to function. (I.e, Serde traits...

Duplicate of https://github.com/onivim/oni/issues/1712 but I have tested this against the wiki config: Tested with the following config.js: ```js module.exports = { "language.rust.languageServer.command": "rls" } ``` Does not work: ![screen shot...

### Describe the problem Right now it's not possible to run SSG without always building/bundling both the app & ssr bundle for production. If no changes have been made to...

enhancement
p2-nice-to-have

There is currently no way to create a `SendError` which means you have to resort to workarounds as per https://github.com/alexcrichton/futures-rs/issues/401. I've been trying to use this to [stream out a...

C-feature-request
A-channel

It would be nice if rust-rocksdb could build on `x86_64-unknown-linux-musl`. I get the following error when using the [rust musl docker](https://github.com/emk/rust-musl-builder): ``` Compiling librocksdb-sys v5.11.3 (file:///home/rust/src/rust-rocksdb/librocksdb-sys) error: failed to run...

enhancement

So I'm wondering if there is a way to either support word wrapping when writing text so newlines are automatically inserted, or provide some metrics around glyph sizes so it...

Version of VSCode: 1.17.2 Version of the extension: 0.4.2 OS: Mac OS X Description: When trying to open the rust source for standard libs via `cmd + click` or `f12`,...

What I'd like to do is something like this, so I can use some of the struct fields within the response: ``` extern crate shio; use shio::prelude::*; use shio::Handler; struct...

Following from https://github.com/hyperium/hyper/issues/1328 Currently the type signature of the shio::Response is heavily coupled to hyper::Body: ``` pub struct Response { pub inner: hyper::Response, } ``` And setting the body requires...

This may already be handled in another way, but I can't for the life of me work it out. Using the [HTTP Stream](https://github.com/mehcode/shio-rs/blob/master/examples/proxy/src/main.rs) example, say you wanted to convert this...