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 = "2021"
14rust-version = "1.56"
15name = "async-trait"
16version = "0.1.83"
17authors = ["David Tolnay <[email protected]>"]
18build = false
19exclude = ["build.rs"]
20autobins = false
21autoexamples = false
22autotests = false
23autobenches = false
24description = "Type erasure for async trait methods"
25documentation = "https://docs.rs/async-trait"
26readme = "README.md"
27keywords = ["async"]
28categories = [
29    "asynchronous",
30    "no-std",
31]
32license = "MIT OR Apache-2.0"
33repository = "https://github.com/dtolnay/async-trait"
34
35[package.metadata.docs.rs]
36rustdoc-args = ["--generate-link-to-definition"]
37targets = ["x86_64-unknown-linux-gnu"]
38
39[lib]
40name = "async_trait"
41path = "src/lib.rs"
42proc-macro = true
43
44[[test]]
45name = "compiletest"
46path = "tests/compiletest.rs"
47
48[[test]]
49name = "test"
50path = "tests/test.rs"
51
52[dependencies.proc-macro2]
53version = "1.0.74"
54
55[dependencies.quote]
56version = "1.0.35"
57
58[dependencies.syn]
59version = "2.0.46"
60features = [
61    "full",
62    "parsing",
63    "printing",
64    "proc-macro",
65    "visit-mut",
66]
67default-features = false
68
69[dev-dependencies.futures]
70version = "0.3.30"
71
72[dev-dependencies.rustversion]
73version = "1.0.13"
74
75[dev-dependencies.tracing]
76version = "0.1.40"
77
78[dev-dependencies.tracing-attributes]
79version = "0.1.27"
80
81[dev-dependencies.trybuild]
82version = "1.0.81"
83features = ["diff"]
84