thrust-rl 0.4.0

High-performance reinforcement learning in Rust with the Burn tensor backend
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
[toolchain]
# Nightly is required because:
#   - the crate uses `edition = "2024"`
#   - `rustfmt.toml` uses nightly-only options (`imports_granularity`, `group_imports`)
#   - `tch` 0.22 / PyTorch 2.9 expect nightly features
#
# Components (rustfmt, clippy) are intentionally NOT listed here so this file
# composes cleanly with `dtolnay/rust-toolchain@nightly` in CI (which installs
# `rustfmt-preview` -- listing `rustfmt` here causes rustup to try to install
# the stable variant of the same component and fail with a `bin/cargo-fmt`
# conflict). On a developer machine, `rustup component add rustfmt clippy
# --toolchain nightly` once is sufficient.
channel = "nightly"