diff --git a/CHANGELOG.md b/CHANGELOG.md index 3295628..f7e4205 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Pharos Changelog +## 0.4.2 - 2019-11-13 + +- drop dependency on log. + ## 0.4.1 - 2019-11-13 - update dependencies to futures 0.3.1. diff --git a/Cargo.toml b/Cargo.toml index a0d8e29..4f20014 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,6 @@ repository = "najamelan/pharos" [dependencies] futures-channel = "^0.3" -log = "^0.4" [dependencies.futures] default-features = false @@ -32,7 +31,7 @@ license = "Unlicense" name = "pharos" readme = "README.md" repository = "https://github.com/najamelan/pharos" -version = "0.4.1" +version = "0.4.2" [package.metadata] [package.metadata.docs] diff --git a/Cargo.yml b/Cargo.yml index 6ca4767..3b261fe 100644 --- a/Cargo.yml +++ b/Cargo.yml @@ -10,7 +10,7 @@ package: # - merge dev branch into master # - create git tag # - version : 0.4.1 + version : 0.4.2 name : pharos authors : [ Naja Melan ] edition : '2018' @@ -45,7 +45,6 @@ dependencies: futures : { version: ^0.3, default-features: false } futures-channel: ^0.3 - log : ^0.4 dev-dependencies: diff --git a/README.md b/README.md index 8a425b0..2294723 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,8 @@ This crate only has one dependencies. Cargo will automatically handle it's depen ```yaml dependencies: - futures-preview: { version: ^0.3.0-alpha, features: [async-await, nightly] } + futures : { version: ^0.3, default-features: false } + futures-channel: ^0.3 ``` ## Usage diff --git a/src/lib.rs b/src/lib.rs index bbd8d6a..4803c5b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -61,8 +61,6 @@ mod import UnboundedReceiver as FutUnboundedReceiver , SendError as FutSendError , }, - - log::*, }; #[ cfg( test ) ]