Jon Gjengset

Results 171 issues of Jon Gjengset

Now that we are moving to `std::future` (#279), we have to make a decision as to how this affects the `Service` trait. The current `Service` trait does not mention `Pin`:...

A-service
I-needs-decision
C-musing

I was very excited to find this project, so I went ahead and made an Arch Linux package out of it: [`autojump-rs`](https://aur.archlinux.org/packages/autojump-rs/). Some notes: - It basically runs the installer...

I'm looking at trying to package Dungeon Revealer for Arch Linux, and have run into an awkward spot. When `dungeon-revealer` is installed into `/usr/bin` (and owned by root), running it...

enhancement
help wanted

Currently, `addr2line` on macOS requires you to manually pass the path to the `dSYM` DWARF file, rather than the executable itself. It'd be neat if the `addr2line` command line tool...

Currently, `src/lib.rs` is becoming quite large. It would be better if `Unit` was factored out into its own module. `Mapping::locate` could also use some modularization love.

- [ ] `std::sync::Barrier` - [x] `std::sync::atomic::AtomicI*` integer types (the signed ones); done in https://github.com/tokio-rs/loom/pull/189 - [x] `Atomic*::into_inner`; done in https://github.com/tokio-rs/loom/pull/327 - [ ] `Atomic*::get_mut` (see also https://github.com/tokio-rs/loom/issues/154) - [...

I've been using [tarpc](https://github.com/google/tarpc), which builds on `tokio` and `tokio-proto`, in a high-performance project recently, in which we benchmark against `memcached`. We were seeing lower throughput than expected, which caused...

For some reason, `cargo-msrv` now refuses to run in _any_ project on my computer: ```console $ cargo new foobar Created binary (application) `foobar` package $ cd foobar/ $ cargo msrv...

C-bug
S-help-wanted
S-cannot-reproduce-yet

### Problem If a channel manifest is updated but a component maintains the same checksum, even within a single Rust version, rustup will download and install all components for that...

bug