forked from dtolnay/async-trait
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (27 loc) · 921 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
[package]
name = "async-trait-with-sync"
version = "0.1.36"
# Note: Original author is David Tolnay, however to avoid publishing crates in their name, this
# author line has been replaced.
# authors = ["David Tolnay <[email protected]>"]
authors = ["49nord GmbH <[email protected]>", "Christian Schwarz <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "`async-trait` with `Sync` patch"
repository = "https://github.com/49nord/async-trait"
documentation = "https://docs.rs/async-trait-with-sync"
readme = "README.md"
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0", features = ["full", "visit-mut"] }
[dev-dependencies]
rustversion = "1.0"
tracing = "0.1.14"
tracing-attributes = "0.1.8"
tracing-futures = "0.2"
trybuild = { version = "1.0.19", features = ["diff"] }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]