Andrew Cann
Andrew Cann
I'm on Gentoo and have the sci-libs/cblas-reference and virtual/cblas packages installed. When I run cargo test I get a couple of pages of errors "undefined reference to `cblas_...'" I eventually...
The way I was thinking of implementing this is to create a `BencodeSlice { encoded: &'a [u8], decoded: BencodeSliceEntry { Empty, Number(i64), ByteString(&'a [u8]), List(Vec
I wanted to submit a PR for this to get it working on latest rust nightly but I can't find the real source code. The version on crates.io has been...
A method to `Digest` to allow it to take data of any type that implements `std::hash::Hash`. Add a default impl for the method.
This would be useful mainly for adding doc comments ``` quick_error! { /// We can put comments here pub enum MyError { /// And we can put comments here MyVariant...
I just discovered that this isn't possible: ``` quick_error! { pub enum MyFancyError { Foo(e: E) { } } } ``` Which is a shame, because this would be very...
I have a couple `[u8; 8]`s that I'd like to xor with each other. Unfortunately this doesn't work: ```rust let x = [0u8; 8]; let y = [1u8; 8]; let...
I'd like to use a `UdpSocket` as a `Stream`/`Sink` of `(SocketAddr, Vec)`. Is there a reason these impls don't already exist? I'm aware I can use `Framed`, but I'd prefer...
##### Issue type: - Feature request ##### Version: Vimperator: 3.16.0 (created: 2017/02/01 00:55:15) Firefox: Mozilla/5.0 (X11; Linux x86_64; rv:53.0) Gecko/20100101 Firefox/53.0 ##### Description: Whenever I want to switch to a...
I've just done the first tutorial video and I tried to compile this: ``` module MALK syntax Expr ::= Id | Expr Expr | "(" Id ":" Expr ")" "->"...