• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "tracing-error"
3# When releasing to crates.io:
4# - Remove path dependencies
5# - Update html_root_url.
6# - Update doc url
7#   - Cargo.toml
8#   - README.md
9# - Update CHANGELOG.md.
10# - Create "v0.2.x" git tag
11version = "0.2.0"
12authors = [
13    "Eliza Weisman <eliza@buoyant.io>",
14    "Jane Lusby <jlusby@yaah.dev>",
15    "Tokio Contributors <team@tokio.rs>"
16]
17license = "MIT"
18readme = "README.md"
19repository = "https://github.com/tokio-rs/tracing"
20homepage = "https://tokio.rs"
21description = """
22Utilities for enriching errors with `tracing`.
23"""
24categories = [
25    "development-tools::debugging",
26    "rust-patterns"
27]
28keywords = [
29    "tracing",
30    "error-handling",
31    "exception-reporting",
32    "backtrace"
33]
34edition = "2018"
35rust-version = "1.49.0"
36
37[features]
38default = ["traced-error"]
39traced-error = []
40
41[dependencies]
42tracing-subscriber = { path = "../tracing-subscriber", version = "0.3.0", default-features = false, features = ["registry", "fmt"] }
43tracing = { path = "../tracing", version = "0.1.35", default-features = false, features = ["std"] }
44
45[badges]
46maintenance = { status = "experimental" }
47
48[package.metadata.docs.rs]
49all-features = true
50rustdoc-args = ["--cfg", "docsrs"]
51