forked from fMeow/maybe-async-rs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
45 lines (36 loc) · 930 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "maybe-async"
version = "0.2.6"
authors = [ "Guoli Lyu <guoli-lv@hotmail.com>" ]
edition = "2018"
readme = "README.md"
license = "MIT"
description = "A procedure macro to unify SYNC and ASYNC implementation"
repository = "https://github.com/fMeow/maybe-async-rs"
documentation = "https://docs.rs/maybe-async"
keywords = [ "maybe", "async", "futures", "macros", "proc_macro" ]
[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
[dependencies.syn]
version = "1.0"
features = [ "visit-mut", "full" ]
[lib]
proc-macro = true
[badges.maintenance]
status = "actively-developed"
[dev-dependencies]
async-trait = "0.1"
[dev-dependencies.trybuild]
version = "1"
features = [ "diff" ]
[dev-dependencies.async-std]
version = "1"
features = [ "attributes" ]
[dev-dependencies.tokio]
version = "1"
features = [ "macros", "rt-multi-thread" ]
[features]
default = [ ]
is_sync = [ ]
is_async = [ ]