This website requires JavaScript.
Explore
Help
Sign In
Influxdata
/
influxdb
mirror of
https://github.com/influxdata/influxdb.git
Watch
1
Star
0
Fork
You've already forked influxdb
0
Code
Issues
Projects
Releases
Wiki
Activity
praveen/pass-in-telem-endpoint
influxdb
/
rust-toolchain.toml
4 lines
83 B
TOML
Raw
Permalink
Normal View
History
Unescape
Escape
chore: Switch to rust-toolchain.toml to specify Rust components we need as well
2021-06-17 14:48:06 +00:00
[
toolchain
]
chore: Upgrade to rustc 1.80 (#25193) This commit updates us to rustc 1.80. There are three significant changes here: 1. LazyLock and LazyCell have been stabilized meaning we can replace our usage of Lazy from the once_cell crate with the std lib versions 2. Lints were added to handle unknown cfg directives. `tokio_unstable` is affected by this and while we do have the flags in our .cargo/config.toml Cargo still output a lint for it so we supress that warning now in our Cargo.toml for the workspace 3. clippy now throws a new warning about priority levels for lints. It's quite frankly a thing that doesn't make sense to me and should be something cargo fixes, but here we are. Besides that it was a painless upgrade and now we're on the latest and greatest.
2024-07-25 15:38:18 +00:00
channel
=
"1.80.0"
fix: add rust-analyzer to toolchain file (#24636) * fix: add rust-analyzer to toolchain file Added the rust-analyzer component to the rust-toolchain.toml file so that the correct version of rust-analyzer is installed on Apple Silicone. This will allow the LSP to work on Apple Silicone machines. * chore: update deps for cargo deny
2024-02-06 21:04:03 +00:00
components
=
[
"rustfmt"
,
"clippy"
,
"rust-analyzer"
]