Techcable

Results 66 issues of Techcable

We'd have to rename our current implementation to 'AbstractEventBus', with a static factory method to create it. Making EventBus an interface will allow clients much more flexibility, and potentially even...

enhancement

Instead of having EventBus delegate marking logic to a 'EventMarker' passed in at creation time, we can switch to having two simple methods in the EventBus class, which clearly and...

enhancement

Some clients (like Bukkit), make events implement an Event interface, that requires events to maintain HandlerLists themselves. Clients would have to extend the EventBus to change this behavior: ``` private...

enhancement

Currently, a EventBus can be built to force events and listeners to implement a certain type. However, similar to #9 , we can just have clients extend EventBus to enforce...

enhancement

When I try to run `jpm update-installed`, I keep running into this error with an unexpected `nil` in `resolve-bundle-name`. ``` From https://github.com/janet-lang/pkgs * branch HEAD -> FETCH_HEAD HEAD is now...

Is there some sort of script you use to generate them? I'm particularly interested in Arch Linux ARM. Thanks :)

Hi! Thanks so much for making this crate :smile: I'm planning to use this in the implementation of built-in objects for a language, and I'd like to support efficient trait...

As discussed in PR #44, the 'time' crate fails timezine detection in the prsesense of multiple threads, because the underlying POSIX function `localtime_r` is not thread safe (at least not...

As discussed in slog-rs/slog#267 it appears that the `term` crate is unmaintained. This is a *draft* for switching to term color: **Advantages:** - `termcolor::Write` extends `std::io::Write` (and has unified stderr/stdout...

C-Cleanup
P-low

The "package_id" field in `cargo metadata` is not a valid [package id specification](https://doc.rust-lang.org/cargo/reference/pkgid-spec.html). Take the output of `cargo metadata | jq '.packages[0].id'` of your local crate. I get `"abort_on_panic 2.0.0...