• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies.
7#
8# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2018"
14rust-version = "1.63.0"
15name = "tracing-attributes"
16version = "0.1.28"
17authors = [
18    "Tokio Contributors <team@tokio.rs>",
19    "Eliza Weisman <eliza@buoyant.io>",
20    "David Barsky <dbarsky@amazon.com>",
21]
22build = false
23autobins = false
24autoexamples = false
25autotests = false
26autobenches = false
27description = """
28Procedural macro attributes for automatically instrumenting functions.
29"""
30homepage = "https://tokio.rs"
31readme = "README.md"
32keywords = [
33    "logging",
34    "tracing",
35    "macro",
36    "instrument",
37    "log",
38]
39categories = [
40    "development-tools::debugging",
41    "development-tools::profiling",
42    "asynchronous",
43]
44license = "MIT"
45repository = "https://github.com/tokio-rs/tracing"
46resolver = "2"
47
48[lib]
49name = "tracing_attributes"
50path = "src/lib.rs"
51proc-macro = true
52
53[[test]]
54name = "async_fn"
55path = "tests/async_fn.rs"
56
57[[test]]
58name = "destructuring"
59path = "tests/destructuring.rs"
60
61[[test]]
62name = "err"
63path = "tests/err.rs"
64
65[[test]]
66name = "fields"
67path = "tests/fields.rs"
68
69[[test]]
70name = "follows_from"
71path = "tests/follows_from.rs"
72
73[[test]]
74name = "instrument"
75path = "tests/instrument.rs"
76
77[[test]]
78name = "levels"
79path = "tests/levels.rs"
80
81[[test]]
82name = "names"
83path = "tests/names.rs"
84
85[[test]]
86name = "parents"
87path = "tests/parents.rs"
88
89[[test]]
90name = "ret"
91path = "tests/ret.rs"
92
93[[test]]
94name = "targets"
95path = "tests/targets.rs"
96
97[[test]]
98name = "ui"
99path = "tests/ui.rs"
100
101[dependencies.proc-macro2]
102version = "1.0.60"
103
104[dependencies.quote]
105version = "1.0.20"
106
107[dependencies.syn]
108version = "2.0"
109features = [
110    "full",
111    "parsing",
112    "printing",
113    "visit-mut",
114    "clone-impls",
115    "extra-traits",
116    "proc-macro",
117]
118default-features = false
119
120[dev-dependencies.async-trait]
121version = "0.1.67"
122
123[dev-dependencies.rustversion]
124version = "1.0.9"
125
126[dev-dependencies.tokio-test]
127version = "0.4.2"
128
129[dev-dependencies.tracing]
130version = "0.1.35"
131
132[dev-dependencies.tracing-subscriber]
133version = "0.3.0"
134features = ["env-filter"]
135
136[dev-dependencies.trybuild]
137version = "1.0.64"
138
139[features]
140async-await = []
141
142[badges.maintenance]
143status = "experimental"
144
145[lints.rust.unexpected_cfgs]
146level = "warn"
147priority = 0
148check-cfg = [
149    "cfg(flaky_tests)",
150    "cfg(tracing_unstable)",
151]
152