Skip to content
This repository has been archived by the owner on Aug 16, 2021. It is now read-only.

Add a Sync bounds to errors #110

Merged
merged 2 commits into from
Jan 9, 2017
Merged

Commits on Jan 4, 2017

  1. Add a Sync bounds to errors

    `Box<Error + Sync + Send>` is far more common than `Box<Error +
    Send>` - common conveniences like conversion from strings are not
    implemented for `Box<Error + Send>`, `Box<Error + Send>` cannot be
    stored in `io::Error`s, etc.
    
    This is a breaking change, but non-`Sync` errors should be rare so the
    fallout shouldn't be too bad.
    sfackler committed Jan 4, 2017
    Configuration menu
    Copy the full SHA
    d99cd49 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2017

  1. Update changelog

    sfackler committed Jan 8, 2017
    Configuration menu
    Copy the full SHA
    463925b View commit details
    Browse the repository at this point in the history