diff --git a/Cargo.toml b/Cargo.toml index 3b3461f..cea12fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ edition = "2018" [dependencies] log = "0.4.6" backtrace = "0.3.30" -async-log-attributes = { path = "async-log-attributes", version = "1.0.0" } +async-log-attributes = { path = "async-log-attributes", version = "1.0.1" } [dev-dependencies] env_logger = "0.6.1" diff --git a/async-log-attributes/Cargo.toml b/async-log-attributes/Cargo.toml index 176e287..15e71f3 100644 --- a/async-log-attributes/Cargo.toml +++ b/async-log-attributes/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "async-log-attributes" description = "Proc Macro attributes for the async-log crate." -version = "1.0.0" +version = "1.0.1" license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/rustasync/runtime" diff --git a/async-log-attributes/src/lib.rs b/async-log-attributes/src/lib.rs index 7ee51c0..0557005 100644 --- a/async-log-attributes/src/lib.rs +++ b/async-log-attributes/src/lib.rs @@ -1,9 +1,7 @@ -//! Proc Macro attributes for the [Runtime](https://github.com/rustasync/runtime) crate. See the -//! [Runtime](https://docs.rs/runtime) documentation for more details. +//! Proc Macro attributes for the `async-log` crate. #![forbid(unsafe_code, future_incompatible, rust_2018_idioms)] #![deny(missing_debug_implementations, nonstandard_style)] -#![feature(async_await)] #![recursion_limit = "512"] extern crate proc_macro;