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: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,7 +94,7 @@ The process described here has several goals:
94
94
95
95
Please follow these steps to have your contribution considered by the maintainers:
96
96
97
-
1. Follow all instructions in [the template](PULL_REQUEST_TEMPLATE.md)
97
+
1. Follow all instructions in [the template](./.github/PULL_REQUEST_TEMPLATE.md)
98
98
2. Follow the [styleguides](#styleguides)
99
99
3. After you submit your pull request, verify that all [status checks](https://help.github.com/articles/about-status-checks/) are passing <details><summary>What if the status checks are failing?</summary>If a status check is failing, and you believe that the failure is unrelated to your change, please leave a comment on the pull request explaining why you believe the failure is unrelated. A maintainer will re-run the status check for you. If we conclude that the failure was a false positive, then we will open an issue to track that problem with our status check suite.</details>
Copy file name to clipboardExpand all lines: README.md
+8-5Lines changed: 8 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,16 +31,16 @@ This library is a work in progress. Although we've been using it in production a
31
31
we've prioritized features that fit our use cases. This means a feature you might need is not implemented
32
32
yet or could be handled better.
33
33
34
-
Pull requests are always welcome. See [Contributing](./CONTRIBUTING.md) and [Code of Conduct](./CODE_OF_CONDUCT.md).
34
+
Pull requests are always welcome. See [Contributing](https://github.com/Empty2k12/influxdb-rust/blob/master/CONTRIBUTING.md) and [Code of Conduct](https://github.com/Empty2k12/influxdb-rust/blob/master/CODE_OF_CONDUCT.md).
35
35
36
-
## Currently Supported Features
36
+
###Currently Supported Features
37
37
38
38
- Reading and Writing to InfluxDB
39
39
- Optional Serde Support for Deserialization
40
40
- Running multiple queries in one request (e.g. `SELECT * FROM weather_berlin; SELECT * FROM weather_london`)
41
41
- Authenticated and Unauthenticated Connections
42
42
43
-
## Planned Features
43
+
###Planned Features
44
44
45
45
- Read Query Builder instead of supplying raw queries
46
46
-`#[derive(InfluxDbReadable)]` and `#[derive(InfluxDbWriteable)]` proc macros
@@ -57,13 +57,15 @@ For an example with using Serde deserialization, please refer to [serde_integrat
57
57
58
58
```rust
59
59
useinfluxdb::{Client, Query, Timestamp};
60
+
useserde::Deserialize;
60
61
usetokio::runtime::current_thread::Runtime;
61
62
62
63
// Create a Client with URL `http://localhost:8086`
Copy file name to clipboardExpand all lines: src/lib.rs
+9-4Lines changed: 9 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
-
//! Library for talking to InfluxDB
2
-
//!
3
1
//! This library is a work in progress. Although we've been using it in production at [OpenVelo](https://openvelo.org/),
4
-
//! we're prioritized features that fit our use cases. This means a feature you might need is not implemented
2
+
//! we've prioritized features that fit our use cases. This means a feature you might need is not implemented
5
3
//! yet or could be handled better.
6
4
//!
5
+
//! Pull requests are always welcome. See [Contributing](https://github.com/Empty2k12/influxdb-rust/blob/master/CONTRIBUTING.md) and [Code of Conduct](https://github.com/Empty2k12/influxdb-rust/blob/master/CODE_OF_CONDUCT.md).
6
+
//!
7
7
//! ## Currently Supported Features
8
8
//!
9
9
//! - Reading and Writing to InfluxDB
@@ -14,7 +14,7 @@
14
14
//! ## Planned Features
15
15
//!
16
16
//! - Read Query Builder instead of supplying raw queries
17
-
//! - `#[derive(InfluxDbWritable)]`
17
+
//! - `#[derive(InfluxDbReadable)]` and `#[derive(InfluxDbWriteable)]` proc macros
18
18
//!
19
19
//! # Quickstart
20
20
//!
@@ -66,6 +66,11 @@
66
66
//!
67
67
//! For further examples, check out the Integration Tests in `tests/integration_tests.rs`
0 commit comments