Compare commits

..

3 commits

Author SHA1 Message Date
alyssa
b8b98e7fd0 chore: update recovery message on dashboard
Some checks failed
Build dashboard Docker image / dashboard docker build (push) Has been cancelled
Build and push Docker image / .net docker build (push) Has been cancelled
.net checks / run .net tests (push) Has been cancelled
.net checks / dotnet-format (push) Has been cancelled
Build and push Rust service Docker images / rust docker build (push) Has been cancelled
rust checks / cargo fmt (push) Has been cancelled
2025-09-03 00:43:56 +00:00
alyssa
4ba5b785e5 add /api/v2/bulk endpoint
also, initial support for patch models in rust!
2025-09-03 00:35:39 +00:00
alyssa
4c940fa925 chore: bump rust edition to 2024 2025-09-03 00:35:39 +00:00
4 changed files with 5 additions and 7 deletions

View file

@ -11,7 +11,6 @@
!Cargo.toml
!Cargo.lock
!rust-toolchain.toml
!PluralKit.sln
!nuget.config
!ci/dotnet-version.sh

View file

@ -4,8 +4,7 @@ WORKDIR /build
RUN apk add rustup build-base
# todo: arm64 target
COPY rust-toolchain.toml .
RUN rustup-init --no-update-default-toolchain -y
RUN rustup-init --default-host x86_64-unknown-linux-musl --default-toolchain nightly-2025-08-22 --profile default -y
ENV PATH=/root/.cargo/bin:$PATH
ENV RUSTFLAGS='-C link-arg=-s'

View file

@ -54,6 +54,7 @@
gcc
omnisharp-roslyn
bashInteractive
rust-analyzer
];
runScript = cmd;
};
@ -72,7 +73,9 @@
programs.nixfmt.enable = true;
};
nci.toolchainConfig = ./rust-toolchain.toml;
nci.toolchainConfig = {
channel = "nightly";
};
nci.projects."pluralkit-services" = {
path = ./.;
export = false;

View file

@ -1,3 +0,0 @@
[toolchain]
channel = "nightly-2025-08-22"
components = ["rust-src", "rustfmt", "rust-analyzer"]