-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
44 lines (38 loc) · 1014 Bytes
/
Cargo.toml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "outcome-46f94afc-026f-5511-9d7e-7d1fd495fb5c"
description = "Augmentations for error propagation"
repository = "https://github.com/bruxisma/outcome"
version = "0.2.0-dev"
edition = "2021"
license = "MIT"
readme = "README.md"
categories = ["no-std", "rust-patterns"]
keywords = ["outcome", "result", "failure", "eyre"]
exclude = [".github", ".gitignore", "Justfile", "rustfmt.toml", "codecov.yml"]
build = "build.rs"
[lib]
name = "outcome"
path = "src/lib.rs"
[dependencies]
eyre = { version = "0.6.12", optional = true }
miette = { version = ">=3.0.0", optional = true }
[build-dependencies]
rustversion = "1.0.15"
[features]
default = ["std"]
diagnostic = ["miette", "std"]
nightly = ["unstable"]
report = ["eyre", "std"]
std = []
unstable = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
rustc-args = ["--cfg", "docsrs"]
[profile.coverage]
codegen-units = 1
incremental = false
inherits = "test"
opt-level = 0
overflow-checks = false
panic = "abort"