Timo Carlin-Burns

Results 29 issues of Timo Carlin-Burns

I suggest adding a container-level attribute `ref_into`. With this feature, the following two examples would be equivalent: ```rust // Example one pub struct Foo; impl Serialize for Foo { fn...

## PR summary This PR - Updates `hc`'s `Cargo.toml` to use the 2018 edition of Rust (74f04b2) - Fixes the broken `use` declarations caused by the changes to namespacing in...

## PR summary This PR - Updates `holochain_core_types`'s `Cargo.toml` to use the 2018 edition of Rust (ca02f6c) - Fixes the broken `use` declarations caused by the changes to namespacing in...

## PR summary This PR - Changes the default template used by `hc generate` to `rust-proc` (1e19808) - and in so doing, fixes holochain/rust-proc-zome-template#5 - Clarifies the documentation of the...

In my work on #1797, I ran into the problem that in my model of Redux, a state must have a pure default value from which to apply actions onto....

## PR summary Wow! I didn't realize just how good clippy is. This saved me tons of manual work. I realize this is a lot of code change to review....

## PR summary Motivated by #1733 This PR mainly rewrites two patterns in the code: - "`[PathBuf]` collecting" ```rust let path: PathBuf = [ PathBuf::from("/tmp"), PathBuf::from("holochain"), some_path_buf_arg, ].iter().collect(); ``` =>...

## PR summary The primary change of this PR is to convert `String` and `&str` to `PathBuf` and `&Path` when applicable to resolve #660. This change is valuable because you...

## PR summary Motivation: a lot of the tests in `instance.rs` have a lot of specific logic for the listener-thread and the DNA initialization process. Separating out this logic and...

## PR summary The previous implementation of `Drop` for `Instance` assumed that there were no other instances referencing the data it dropped. Since we used a derived implementation of `Clone`...