q 0.1.1

Q is a Rust GDExtension crate for Godot, offering a Game Manager, Music Manager, Bevy ECS, and Tokio-powered multi-threading. It simplifies and enhances game development with efficient tools and scalable performance.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM rust:1.88-bookworm

RUN apt-get update -qq && \
    apt-get install -y --no-install-recommends \
    gcc-mingw-w64-x86-64 \
    && rm -rf /var/lib/apt/lists/*

RUN rustup target add x86_64-pc-windows-gnu && \
    rustup component add rustfmt clippy

WORKDIR /workspace

# Usage (from repo root):
#   docker build -t q-windows-check -f packages/rust/q/Dockerfile.windows-check .
#   docker run --rm -v "$(pwd):/workspace" q-windows-check cargo check  -p q --target x86_64-pc-windows-gnu
#   docker run --rm -v "$(pwd):/workspace" q-windows-check cargo clippy -p q --target x86_64-pc-windows-gnu