Skip to content

Commit

Permalink
chore(release): 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fMeow committed Oct 5, 2020
1 parent 242ded2 commit 3ddb5ca
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 15 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.2.1](https://github.com/guoli-lyu/maybe-async-rs/compare/v0.2.0...v0.2.1) (2020-10-05)


### Bug Fixes

* allow unused_paren when convert to sync ([242ded2](https://github.com/guoli-lyu/maybe-async-rs/commit/242ded2fb9f1cc3c883e0f39a081a555e7a74198))
36 changes: 21 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,38 +1,44 @@
[package]
name = "maybe-async"
version = "0.2.0"
authors = ["Guoli Lyu <guoli-lv@hotmail.com>"]
version = "0.2.1"
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"]
keywords = [ "maybe", "async", "futures", "macros", "proc_macro" ]

[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0", features = ["visit-mut"] }

[dependencies.syn]
version = "1.0"
features = [ "visit-mut" ]

[lib]
proc-macro = true

[badges]
maintenance = { status = "actively-developed" }
[badges.maintenance]
status = "actively-developed"

[dev-dependencies]
trybuild = { version = "1", features = ["diff"] }
async-trait = "0.1"

[dev-dependencies.async-std]
version = "1"
features = ["attributes"]
[dev-dependencies.trybuild]
version = "1"
features = [ "diff" ]

[dev-dependencies.async-std]
version = "1"
features = [ "attributes" ]

[dev-dependencies.tokio]
version = "0.2.0"
features = ["macros", "rt-core"]
[dev-dependencies.tokio]
version = "0.2.0"
features = [ "macros", "rt-core" ]

[features]
default = []
is_sync = []
default = [ ]
is_sync = [ ]

0 comments on commit 3ddb5ca

Please sign in to comment.