Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6ee44db

Browse files
committedSep 19, 2024
Downgrade dev-dep tokio to support MSRV 1.65
1 parent 9d8d453 commit 6ee44db

File tree

3 files changed

+3265
-2
lines changed

3 files changed

+3265
-2
lines changed
 

‎.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
/target
22
**/*.rs.bk
3-
Cargo.lock

‎Cargo.lock

+3,263
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎influxdb/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ license = "MIT"
1111
readme = "README.md"
1212
include = ["src/**/*", "tests/**/*", "Cargo.toml", "LICENSE"]
1313
repository = "https://github.com/influxdb-rs/influxdb-rust"
14+
rust-version = "1.65"
1415

1516
[dependencies]
1617
chrono = { version = "0.4.23", features = ["serde"], default-features = false }
@@ -43,4 +44,4 @@ wasm-client = ["surf", "surf/wasm-client"]
4344
[dev-dependencies]
4445
async-std = { version = "1.6.5", features = ["attributes", "tokio02", "tokio1"] }
4546
indoc = "1.0"
46-
tokio = { version = "1.7", features = ["macros", "rt-multi-thread"] }
47+
tokio = { version = "=1.25.0", features = ["macros", "rt-multi-thread"] }

0 commit comments

Comments
 (0)
Please sign in to comment.