maplibre-rs/rust-toolchain.toml
Salvatore Testa a8be3cf736
Demo working again (#300)
* Bump to Rust 1.76

Closes https://github.com/maplibre/maplibre-rs/issues/298

* Remove unused import `super::noweb::trace::*`

When trying to compile, the following error pops up.

```
error: unused import: `super::noweb::trace::*`
  --> maplibre/src/platform/mod.rs:26:13
   |
26 |     pub use super::noweb::trace::*;
   |             ^^^^^^^^^^^^^^^^^^^^^^
   |
```
2024-03-13 20:31:35 +00:00

9 lines
432 B
TOML

[toolchain]
# The CI will not use the rust-toolchain.toml file to build this project.
# The CI might use it though to build other Rust binaries, required for building maplibre-rs.
# This file is here to give IDEs a hint about which Rust version to use.
# The version is set here instead of using stable, so we can make sure that a predictable version is used.
#
# Keep this in sync with `justfile` and `Cargo.toml`
channel = "1.76"