mirror of
https://github.com/github/codeql.git
synced 2025-12-15 16:23:11 +01:00
Also: * remove new warnings raised by the rust toolchain * run new formatting and linting * update the rust toolchain used by `cargo` While we keep `bazel` builds using the same toolchain as internally (now a nightly one), I opted for using a stable toolchain for `cargo`. The nightly toolchain is only required internally for build reasons, we should keep not using any unstable rust features in our sources.
11 lines
441 B
TOML
11 lines
441 B
TOML
# This file specifies the Rust version used to develop the extractors written
|
|
# in rust. Notice that this is just used by using `cargo`-related tools in a
|
|
# local dev environment. The actual version used to build the released packs
|
|
# is specified in `MODULE.bazel` in the internal repository (typically
|
|
# reflected by `MODULE.bazel` in this repository).
|
|
|
|
[toolchain]
|
|
channel = "1.88"
|
|
profile = "minimal"
|
|
components = [ "clippy", "rustfmt" ]
|