Skip to content

Commit

Permalink
fix smol version upgrade
Browse files Browse the repository at this point in the history
Signed-off-by: Ankur Srivastava <[email protected]>
  • Loading branch information
ansrivas committed Jul 23, 2020
1 parent 875ca7e commit c1d3376
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "MIT"
name = "aiven_rs"
readme = "README.md"
repository = "https://github.com/ansrivas/aiven-rs"
version = "0.2.0"
version = "0.2.1"
include = [
"**/*.rs",
"Cargo.toml",
Expand Down
5 changes: 3 additions & 2 deletions examples/clouds_smol.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@

use aiven_rs::{cloud::types::ResClouds, AivenClient};
use blocking::block_on;
use smol::Task;

fn main() {
block_on(async {
block_on(Task::spawn(async {
env_logger::init();

// use std::env;
Expand All @@ -45,5 +46,5 @@ fn main() {
// for cloud in &output.clouds {
// println!("{:?}", cloud.cloud_name);
// }
});
}));
}

0 comments on commit c1d3376

Please sign in to comment.