diff --git a/Cargo.toml b/Cargo.toml index 92b01c78..71c75b6f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ya-client" -version = "0.5.3" +version = "0.6.0" description = "Yagna REST API client async binding" authors = ["Golem Factory "] homepage = "https://github.com/golemfactory/ya-client" @@ -19,7 +19,7 @@ members = [ ] [dependencies] -ya-client-model = { version= "^0.3", path = "model" } +ya-client-model = { version= "^0.4", path = "model" } awc = "3" actix-codec = "0.5" @@ -51,5 +51,5 @@ env_logger = "0.9" structopt = "0.3" [package.metadata.release] -no-dev-version = true +dev-version = false enable-all-features = true diff --git a/model/Cargo.toml b/model/Cargo.toml index b54fd4a1..9be16381 100644 --- a/model/Cargo.toml +++ b/model/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ya-client-model" -version = "0.3.2" +version = "0.4.0" description = "Yagna REST API data model" authors = ["Golem Factory "] homepage = "https://github.com/golemfactory/ya-client" @@ -30,5 +30,5 @@ secp256k1 = { version = "0.19", optional = true } openssl = { version = "0.10", optional = true } [package.metadata.release] -no-dev-version = true +dev-version = false enable-all-features = true diff --git a/release.toml b/release.toml index e0fc14ef..45cb2b52 100644 --- a/release.toml +++ b/release.toml @@ -1,5 +1,5 @@ sign-commit=true sign-tag=true -no-dev-version=true +dev-version=false pre-release-commit-message="release {{crate_name}} {{version}}" enable-all-features=true diff --git a/src/web.rs b/src/web.rs index ef543aea..e6bc2b23 100644 --- a/src/web.rs +++ b/src/web.rs @@ -2,8 +2,8 @@ use actix_codec::Framed; use awc::{ error::{PayloadError, SendRequestError}, - http::{Method, StatusCode, header}, - http::header::{HeaderMap, HeaderName, HeaderValue, }, + http::header::{HeaderMap, HeaderName, HeaderValue}, + http::{header, Method, StatusCode}, ws::Codec, BoxedSocket, ClientRequest, ClientResponse, SendClientRequest, };