From 83ab35b34707f3bd8b6c0d2f92e235cb2fdf6540 Mon Sep 17 00:00:00 2001 From: ghzhost Date: Wed, 2 Sep 2026 23:36:25 +0000 Subject: [PATCH] build(toolchain): remove hardcoded x86_64-apple-darwin target override (#13) --- .cargo/config.toml | 6 ++---- rust-toolchain.toml | 2 -- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 231b2cb..8a0c8cc 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,4 +1,2 @@ -# Override the parent workspace's wasm32 default target. -# The backend is a native server binary — always build for the host. -[build] -target = "x86_64-apple-darwin" +# Cargo configuration for stellarsend-backend +# Builds natively for the host architecture (Linux, macOS, Windows) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 58c1cb4..292fe49 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,4 +1,2 @@ [toolchain] channel = "stable" -# Only native targets — no wasm for the backend server binary. -targets = ["x86_64-apple-darwin"]