-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
28 lines (24 loc) · 957 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
[package]
name = "real-async-trait"
version = "0.0.2"
authors = ["4lDO2 <[email protected]>"]
edition = "2018"
description = "A proc macro that uses experimental features to work around type erasure for async traits"
readme = "README.md"
repository = "https://github.com/4lDO2/real-async-trait-rs"
license = "MIT OR Apache-2.0"
keywords = ["async-trait", "gats", "existential-types", "proc-macro", "async"]
categories = ["asynchronous"]
[badges]
travis-ci = { repository = "4lDO2/real-async-trait-rs", branch = "master" }
is-it-maintained-issue-resolution = { repository = "4lDO2/real-async-trait-rs" }
is-it-maintained-open-issues = { repository = "4lDO2/real-async-trait-rs" }
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1"
quote = "1"
syn = { version = "1", features = ["full", "visit"] }
[dev-dependencies]
async-std = { version = "1.6", features = ["attributes"] }
syn = { version = "1", features = ["full", "visit", "extra-traits"] }