Skip to content

Commit 4c58cd1

Browse files
committed
updates based on PR feedback
1 parent b5d4d79 commit 4c58cd1

File tree

2 files changed

+3
-37
lines changed

2 files changed

+3
-37
lines changed

README.md

Lines changed: 3 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -121,49 +121,23 @@ To communicate with InfluxDB, you can choose the HTTP backend to be used configu
121121
influxdb = { version = "0.7.2", default-features = false, features = ["derive", "serde", "reqwest-client-native-tls-vendored"] }
122122
```
123123

124-
* **[curl][__link9]**, using [libcurl][__link10]
125-
```toml
126-
influxdb = { version = "0.7.2", default-features = false, features = ["derive", "serde", "curl-client"] }
127-
```
128-
129-
* **[async-h1][__link11]** with native TLS (OpenSSL)
130-
```toml
131-
influxdb = { version = "0.7.2", default-features = false, features = ["derive", "serde", "h1-client"] }
132-
```
133-
134-
* **[async-h1][__link12]** with [rustls][__link13]
135-
```toml
136-
influxdb = { version = "0.7.2", default-features = false, features = ["derive", "serde", "h1-client-rustls"] }
137-
```
138-
139-
* WebAssembly’s `window.fetch`, via `web-sys` and **[wasm-bindgen][__link14]**
140-
```toml
141-
influxdb = { version = "0.7.2", default-features = false, features = ["derive", "serde", "wasm-client"] }
142-
```
143-
144124
## License
145125

146-
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)][__link15]
126+
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)][__link9]
147127

148128

149129
@ 2020-2024 Gero Gerke, msrd0 and [contributors].
150130

151131
[contributors]: https://github.com/influxdb-rs/influxdb-rust/graphs/contributors
152-
[__cargo_doc2readme_dependencies_info]: ggGkYW0CYXSEGzJ_QpW55zB1G0S-TER-rIfLG2gXv8EYBG3jG1nuXXn-kdx-YXKEG4NMwSc-atpuGyQ3O7T4Ur42GzFqIg36Zfn7G7roc8ix9SwDYWSBgmhpbmZsdXhkYmUwLjcuMg
132+
[__cargo_doc2readme_dependencies_info]: ggGkYW0CYXSEGzJ_QpW55zB1G0S-TER-rIfLG2gXv8EYBG3jG1nuXXn-kdx-YXKEG8LHWNBBuXgSGz-2Lrx4E_kTG0bJiXb6A8zNG9GhXhvU8L0xYWSBgmhpbmZsdXhkYmUwLjcuMg
153133
[__link0]: https://github.com/influxdb-rs/influxdb-rust/blob/main/CONTRIBUTING.md
154134
[__link1]: https://github.com/influxdb-rs/influxdb-rust/blob/main/CODE_OF_CONDUCT.md
155-
[__link10]: https://curl.se/libcurl/
156-
[__link11]: https://github.com/http-rs/async-h1
157-
[__link12]: https://github.com/http-rs/async-h1
158-
[__link13]: https://github.com/ctz/rustls
159-
[__link14]: https://github.com/rustwasm/wasm-bindgen
160-
[__link15]: https://opensource.org/licenses/MIT
161135
[__link2]: https://github.com/influxdb-rs/influxdb-rust/blob/main/CHANGELOG.md
162136
[__link3]: https://github.com/influxdb-rs/influxdb-rust/blob/main/influxdb/Cargo.toml
163137
[__link4]: https://docs.rs/influxdb/0.7.2/influxdb/?search=integrations::serde_integration
164138
[__link5]: https://github.com/hyperium/hyper
165139
[__link6]: https://github.com/ctz/rustls
166140
[__link7]: https://github.com/hyperium/hyper
167141
[__link8]: https://github.com/hyperium/hyper
168-
[__link9]: https://github.com/alexcrichton/curl-rust
142+
[__link9]: https://opensource.org/licenses/MIT
169143

influxdb/src/lib.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,6 @@
7878
#![doc = cargo_toml!(indent="\t", default-features = false, "derive", "serde", "reqwest-client-native-tls")]
7979
//! - **[hyper](https://github.com/hyperium/hyper)** (through reqwest), with vendored native TLS (OpenSSL)
8080
#![doc = cargo_toml!(indent="\t", default-features = false, "derive", "serde", "reqwest-client-native-tls-vendored")]
81-
//! - **[curl](https://github.com/alexcrichton/curl-rust)**, using [libcurl](https://curl.se/libcurl/)
82-
#![doc = cargo_toml!(indent="\t", default-features = false, "derive", "serde", "curl-client")]
83-
//! - **[async-h1](https://github.com/http-rs/async-h1)** with native TLS (OpenSSL)
84-
#![doc = cargo_toml!(indent="\t", default-features = false, "derive", "serde", "h1-client")]
85-
//! - **[async-h1](https://github.com/http-rs/async-h1)** with [rustls](https://github.com/ctz/rustls)
86-
#![doc = cargo_toml!(indent="\t", default-features = false, "derive", "serde", "h1-client-rustls")]
87-
//! - WebAssembly's `window.fetch`, via `web-sys` and **[wasm-bindgen](https://github.com/rustwasm/wasm-bindgen)**
88-
#![doc = cargo_toml!(indent="\t", default-features = false, "derive", "serde", "wasm-client")]
8981
//!
9082
//! # License
9183
//!

0 commit comments

Comments
 (0)