summaryrefslogtreecommitdiffstats
path: root/third_party/rust/failure/Cargo.toml
blob: 8d6802028dbe5f81b8ca2b8c30bfff0f7ecbf295 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
authors = ["Without Boats <boats@mozilla.com>"]
description = "Experimental error handling abstraction."
documentation = "https://docs.rs/failure"
homepage = "https://rust-lang-nursery.github.io/failure/"
license = "MIT OR Apache-2.0"
name = "failure"
repository = "https://github.com/rust-lang-nursery/failure"
version = "0.1.6"

[dependencies.failure_derive]
optional = true
version = "0.1.6"
path = "./failure_derive"

[dependencies.backtrace]
optional = true
version = "0.3.3"

[workspace]
members = [".", "failure_derive"]

[features]
default = ["std", "derive"]
#small-error = ["std"]
std = []
derive = ["failure_derive"]