diff --git a/Cargo.lock b/Cargo.lock index 4058d68..0981291 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -114,7 +114,7 @@ dependencies = [ [[package]] name = "nut-client" -version = "0.1.0" +version = "0.2.0" dependencies = [ "rustls", "shell-words", @@ -162,7 +162,7 @@ dependencies = [ [[package]] name = "rupsc" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "clap", diff --git a/README.md b/README.md index 858352c..279da26 100644 --- a/README.md +++ b/README.md @@ -87,4 +87,3 @@ uses `rustls` under the hood. Note that this crate turns off all certificate validation at the moment, effectively giving a false sense of security. If you'd like to contribute to this, see issue #8. - diff --git a/nut-client/Cargo.toml b/nut-client/Cargo.toml index db90830..c40be4e 100644 --- a/nut-client/Cargo.toml +++ b/nut-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nut-client" -version = "0.1.0" +version = "0.2.0" authors = ["Aram Peres "] edition = "2018" description = "Network UPS Tools (NUT) client library" diff --git a/rupsc/Cargo.toml b/rupsc/Cargo.toml index 87ebb2f..901e8f7 100644 --- a/rupsc/Cargo.toml +++ b/rupsc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rupsc" -version = "0.1.0" +version = "0.2.0" authors = ["Aram Peres "] edition = "2018" description = "A demo program to display UPS variables" @@ -17,6 +17,6 @@ clap = "2.33.3" anyhow = "1" [dependencies.nut-client] -version = "0.1.0" +version = "0.2.0" path = "../nut-client" features = ["ssl"]