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"]