Markus Kohlhase
Markus Kohlhase
That's what I did: ```sh git clone https://github.com/MartinKavik/seed-quickstart-webpack cd seed-quickstart-webpack yarn yarn start ``` That's the error msg: 
In my `/etc/nixos/configuration.nix` I tried ```nix { config, pkgs, ... }: let # ... rustOverlay = import ("${builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz}/rust-overlay.nix"); rust = (pkgs.latest.rust.override { targets = [ "x86_64-unknown-linux-musl" ]; }); in...
As a library author I'd love to get some more clarity about the future of `tokio-proto`. Within the [tokio-reform](https://github.com/aturon/tokio-rfcs/blob/tokio-reform/tokio-reform.md#tokio-proto) I can read the following: > So, in general: the future...
Writing a library that depends on `tokio` cannot use `tokio-proto::TcpClient` of course: ``` = note: expected type `&tokio_core::reactor::Handle` found type `&tokio::reactor::Handle` ``` Updating the dependency would solve that problem but...
At the moment I'm forced to use `%dd %Mon %YYYY %HH:%MM:%SS %zzzz` as date format. That's ok for the template header but I'd like to render it in an other...
It would be great if there is a option to compress the HTML output. Does s.o. know how to achieve this with a minimal effort?
I trying to migrate from `quick_error` to `failure` with the following code. This was the original error enum: ```rust quick_error!{ #[derive(Debug)] pub enum AppError { Business(err: BusinessError){ from() cause(err) description(err.description())...
Don't merge until it is working ;-) Could s.o. help me to make it work?
Hi Mirko, I didn't read the whole thesis but I enjoyed skimming over some sections :) Nice work! I wonder if you ever see a system using an approach like...
I'm willing to merge PRs, publish new versions and help with some guidance for developers but I can't offer active development. So if you like to help, please write testcases,...