You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: influxdb/src/lib.rs
+7-10
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,14 @@
1
-
//! This library is a work in progress. This means a feature you might need is not implemented
2
-
//! yet or could be handled better.
3
-
//!
4
1
//! Pull requests are always welcome. See [Contributing](https://github.com/influxdb-rs/influxdb-rust/blob/main/CONTRIBUTING.md) and [Code of Conduct](https://github.com/influxdb-rs/influxdb-rust/blob/main/CODE_OF_CONDUCT.md). For a list of past changes, see [CHANGELOG.md](https://github.com/influxdb-rs/influxdb-rust/blob/main/CHANGELOG.md).
5
2
//!
6
3
//! ## Currently Supported Features
7
4
//!
8
-
//! - Reading and Writing to InfluxDB
9
-
//! - Optional Serde Support for Deserialization
5
+
//! - Reading and writing to InfluxDB
6
+
//! - Optional Serde support for deserialization
10
7
//! - Running multiple queries in one request (e.g. `SELECT * FROM weather_berlin; SELECT * FROM weather_london`)
11
8
//! - Writing single or multiple measurements in one request (e.g. `WriteQuery` or `Vec<WriteQuery>` argument)
12
-
//! - Authenticated and Unauthenticated Connections
9
+
//! - Authenticated and unauthenticated connections
13
10
//! - `async`/`await` support
14
-
//! - `#[derive(InfluxDbWriteable)]` Derive Macro for Writing / Reading into Structs
11
+
//! - `#[derive(InfluxDbWriteable)]` derive macro for writing / reading into structs
15
12
//! - `GROUP BY` support
16
13
//! - Tokio and async-std support (see example below) or [available backends](https://github.com/influxdb-rs/influxdb-rust/blob/main/influxdb/Cargo.toml)
0 commit comments