gecko-dev/third_party/rust/error-chain
Bobby Holley 909114ca57 Bug 1340838 - Revendor rust dependencies after upgrade. r=me
MozReview-Commit-ID: IJRUwUF6IcJ


--HG--
rename : third_party/rust/app_units/.cargo-checksum.json => third_party/rust/app_units-0.3.0/.cargo-checksum.json
rename : third_party/rust/app_units/Cargo.toml => third_party/rust/app_units-0.3.0/Cargo.toml
rename : third_party/rust/app_units/src/app_unit.rs => third_party/rust/app_units-0.3.0/src/app_unit.rs
rename : third_party/rust/euclid/.cargo-checksum.json => third_party/rust/euclid-0.10.3/.cargo-checksum.json
rename : third_party/rust/euclid/Cargo.toml => third_party/rust/euclid-0.10.3/Cargo.toml
rename : third_party/rust/euclid/src/length.rs => third_party/rust/euclid-0.10.3/src/length.rs
rename : third_party/rust/euclid/src/lib.rs => third_party/rust/euclid-0.10.3/src/lib.rs
rename : third_party/rust/euclid/src/macros.rs => third_party/rust/euclid-0.10.3/src/macros.rs
rename : third_party/rust/euclid/src/matrix2d.rs => third_party/rust/euclid-0.10.3/src/matrix2d.rs
rename : third_party/rust/euclid/src/matrix4d.rs => third_party/rust/euclid-0.10.3/src/matrix4d.rs
rename : third_party/rust/euclid/src/rect.rs => third_party/rust/euclid-0.10.3/src/rect.rs
rename : third_party/rust/euclid/src/scale_factor.rs => third_party/rust/euclid-0.10.3/src/scale_factor.rs
rename : third_party/rust/euclid/src/size.rs => third_party/rust/euclid-0.10.3/src/size.rs
2017-02-18 14:09:44 -08:00
..
examples
src
tests
.cargo-checksum.json Bug 1340838 - Revendor rust dependencies after upgrade. r=me 2017-02-18 14:09:44 -08:00
.cargo-ok
.gitignore
.travis.yml
CHANGELOG.md
Cargo.toml
README.md

README.md

error-chain - Consistent error handling for Rust

Build Status Latest Version License

error-chain makes it easy to take full advantage of Rust's error handling features without the overhead of maintaining boilerplate error types and conversions. It implements an opinionated strategy for defining your own error types, as well as conversions from others' error types.

Documentation (crates.io).

Documentation (master).

Quick start

If you just want to set up your new project with error-chain, follow the quickstart.rs template, and read this intro to error-chain.

Supported Rust version

Please view the beginning of the Travis configuration file to see the oldest supported Rust version.

Note that error-chain supports older versions of Rust when built with default-features = false.

License

MIT/Apache-2.0