prtq scene composer
There's been issues with the toolchain to build prtq as of early April 2026: the most recent versions of everything (rustc 1.94.1 and dioxus 0.7.5) don't allow to build it properly.
A working combination of toolchain is already setup in this repository:
- the
dioxusdependency of the exact version=0.7.3, is specified in the[dependencies]section of theCargo.toml, and - the
[toolchain]section of therust-toolchain.tomlalready specifieschannel = "1.93.1".
For it to work, you need this toolchain to be installed :
-
rustc
1.93.1> rustup install 1.93.1 -
the
wasm32-unknown-unknowntarget for toolchain1.93.1> rustup target add wasm32-unknown-unknown --toolchain 1.93.1 -
the
dioxus-cli(providing thedxcommand) version0.7.3> cargo binstall dioxus-cli --force --version 0.7.3
This allows to run prtq by using the usual :
> dx serve
at the root of the crate repository.
Licensed under
- GNU GENERAL PUBLIC LICENSE, Version 3.0 (LICENSE or https://www.gnu.org/licenses/gpl-3.0.html)
Copyright (C) 2026 François Desloges
prtq is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3 only.
prtq is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
