Skip to content

Commit

Permalink
0.16.1: Fix broken CLI app build
Browse files Browse the repository at this point in the history
  • Loading branch information
DoumanAsh committed Dec 19, 2019
1 parent b819d14 commit f86db8a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fie"
version = "0.16.0"
version = "0.16.1"
authors = ["Douman <[email protected]>"]
repository = "https://github.com/DoumanAsh/fie"
description = "Small and cute social media utility."
Expand All @@ -26,7 +26,7 @@ features = ["wrap_help", "suggestions"]
[dependencies.tokio]
version = "0.2"
default-features = false
features = ["rt-core", "macros"]
features = ["rt-core", "io-driver", "macros"]
optional = true

[dependencies]
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Build status](https://ci.appveyor.com/api/projects/status/oc937oppd38x1y4y/branch/master?svg=true)](https://ci.appveyor.com/project/DoumanAsh/fie/branch/master)
[![Build Status](https://travis-ci.org/DoumanAsh/fie.svg?branch=master)](https://travis-ci.org/DoumanAsh/fie)
[![Crates.io](https://img.shields.io/crates/v/fie.svg)](https://crates.io/crates/fie)
[![Dependency status](https://deps.rs/crate/fie/0.16.0/status.svg)](https://deps.rs/crate/fie)
[![Dependency status](https://deps.rs/crate/fie/0.16.1/status.svg)](https://deps.rs/crate/fie)

Small and cute social media CLI.

Expand All @@ -13,10 +13,9 @@ Small and cute social media CLI.

### Download links

* Windows [32bit](https://github.com/DoumanAsh/fie/releases/download/0.16.0/fie-0.16.0-i686-pc-windows-msvc.zip)
* Windows [64bit](https://github.com/DoumanAsh/fie/releases/download/0.16.0/fie-0.16.0-x86_64-pc-windows-msvc.zip)
* Linux [64bit](https://github.com/DoumanAsh/fie/releases/download/0.16.0/fie-0.16.0-x86_64-unknown-linux-gnu.zip)
* OSX [64bit](https://github.com/DoumanAsh/fie/releases/download/0.16.0/fie-0.16.0-x86_64-apple-darwin.zip)
* Windows [64bit](https://github.com/DoumanAsh/fie/releases/download/0.16.1/fie-0.16.1-x86_64-pc-windows-msvc.zip)
* Linux [64bit](https://github.com/DoumanAsh/fie/releases/download/0.16.1/fie-0.16.1-x86_64-unknown-linux-gnu.zip)
* OSX [64bit](https://github.com/DoumanAsh/fie/releases/download/0.16.1/fie-0.16.1-x86_64-apple-darwin.zip)

### Cargo

Expand Down
2 changes: 1 addition & 1 deletion src/cli/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ fn use_twitter_builtin_consumer(twitter: &mut fie::config::Twitter) {

#[inline(always)]
fn runtime() -> tokio::runtime::Runtime {
tokio::runtime::Builder::new().basic_scheduler().build().expect("To create async runtime")
tokio::runtime::Builder::new().basic_scheduler().enable_io().build().expect("To create async runtime")
}

fn command_post(config: Config, post: cli::Post) -> io::Result<()> {
Expand Down

0 comments on commit f86db8a

Please sign in to comment.