bumped to v0.0.5

This commit is contained in:
Ishan Jain 2022-04-18 19:54:54 +05:30
parent 861bc05d7e
commit 80dfcc892f
3 changed files with 3 additions and 5 deletions

2
Cargo.lock generated
View File

@ -364,7 +364,7 @@ checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
[[package]]
name = "mikrotik"
version = "0.0.4"
version = "0.0.5"
dependencies = [
"base64",
"reqwest",

View File

@ -1,6 +1,6 @@
[package]
name = "mikrotik"
version = "0.0.4"
version = "0.0.5"
edition = "2021"
description = "REST API Wrapper for Mikrotik API"
license = "MIT"

View File

@ -8,8 +8,7 @@ use thiserror::Error;
pub struct Client {
pub client: reqwest::Client,
base_url: Url,
pub basic_auth: HeaderValue,
pub self_signed_cert: bool,
basic_auth: HeaderValue,
}
impl Client {
@ -33,7 +32,6 @@ impl Client {
client,
base_url,
basic_auth,
self_signed_cert,
})
}