mirror of https://gitlab.com/famedly/conduit.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
511 B
21 lines
511 B
# This is the authoritiative configuration of this project's Rust toolchain. |
|
# |
|
# Other files that need upkeep when this changes: |
|
# |
|
# * `Cargo.toml` |
|
# * `flake.nix` |
|
# |
|
# Search in those files for `rust-toolchain.toml` to find the relevant places. |
|
# If you're having trouble making the relevant changes, bug a maintainer. |
|
|
|
[toolchain] |
|
channel = "1.83.0" |
|
components = [ |
|
# For rust-analyzer |
|
"rust-src", |
|
] |
|
targets = [ |
|
"aarch64-unknown-linux-musl", |
|
"x86_64-unknown-linux-gnu", |
|
"x86_64-unknown-linux-musl", |
|
]
|
|
|