From ef97321b32c7bbd7fc4132ca4666eb938c77dd96 Mon Sep 17 00:00:00 2001 From: Daniel Pfefferkorn Date: Fri, 9 Aug 2024 10:39:09 +0200 Subject: [PATCH] Update ARCHITECTURE.md#Backend (#9236) Deleted both lines because `build.rs` was removed via https://github.com/rust-lang/crates.io/pull/7422 and `.rustfmt.toml` was removed via https://github.com/rust-lang/crates.io/pull/2107. --- docs/ARCHITECTURE.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/ARCHITECTURE.md b/docs/ARCHITECTURE.md index 7297df0c78a..6c2430fd891 100644 --- a/docs/ARCHITECTURE.md +++ b/docs/ARCHITECTURE.md @@ -25,12 +25,10 @@ related crates. More information about the backend is in These files and directories have to do with the backend: -- `build.rs` - Cargo build script - `Cargo.lock` - Locks dependencies to specific versions providing consistency across development and deployment - `Cargo.toml` - Defines the crate and its dependencies - `migrations/` - Diesel migrations applied to the database during development and deployment -- `.rustfmt.toml` - Defines Rust coding style guidelines which are enforced by the CI environment - `src/` - The backend's source code - `target/` - Compiled output, including dependencies and final binary artifacts - (ignored in `.gitignore`)