Skip to content

Commit

Permalink
bump to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
driftluo committed Apr 7, 2020
1 parent 583d6ff commit 28b284d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
7 changes: 3 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "influx_db_client"
version = "0.4.0"
version = "0.4.1"
authors = ["piaoliu <441594700@qq.com>"]
documentation = "https://docs.rs/influx_db_client/"
repository = "https://github.com/driftluo/InfluxDBClient-rs"
Expand All @@ -18,8 +18,7 @@ travis-ci = { repository = "driftluo/InfluxDBClient-rs" }
[dependencies]
reqwest = { version = "^0.10", default-features = false, features = ["json"] }
serde_json = '^1.0.2'
serde_derive = "^1.0.15"
serde = "^1.0.15"
serde = { version = "^1.0.15", features = ["derive"] }
bytes = "^0.5"
futures = "^0.3"

Expand All @@ -33,4 +32,4 @@ default = ["reqwest/default-tls"]


# For using rustls-tls (and no need for openssl anymore)
rustls-tls = ["reqwest/rustls-tls"]
rustls-tls = ["reqwest/rustls-tls"]
1 change: 1 addition & 0 deletions src/error.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
use serde::{Deserialize, Serialize};
use std::error::Error as StdError;
use std::fmt;
use std::io;
Expand Down
1 change: 1 addition & 0 deletions src/keys.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
use serde::{Deserialize, Serialize};
use serde_json;
use std::collections::HashMap;
use std::iter::FromIterator;
Expand Down
3 changes: 0 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,6 @@
#![deny(warnings)]
#![deny(missing_docs)]

#[macro_use]
extern crate serde_derive;

/// All API on influxdb client, Including udp, http
pub mod client;
/// Error module
Expand Down

0 comments on commit 28b284d

Please sign in to comment.