File: Cargo.toml.orig

package info (click to toggle)
rust-failure 0.1.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 364 kB
  • sloc: sh: 37; makefile: 17
file content (27 lines) | stat: -rw-r--r-- 649 bytes parent folder | download
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.7"

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

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

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

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