An easy-to-host PDS on the ATProtocol, MacOS. Grandma-approved.

feat(MM-143): add src-tauri stub crate to workspace, add iOS targets to rust-toolchain

authored by malpercio.dev and committed by

Tangled e630b5b9 4b3b5e5a

+9 -1
+1
Cargo.toml
··· 4 "crates/repo-engine", 5 "crates/crypto", 6 "crates/common", 7 ] 8 resolver = "2" 9
··· 4 "crates/repo-engine", 5 "crates/crypto", 6 "crates/common", 7 + "apps/identity-wallet/src-tauri", 8 ] 9 resolver = "2" 10
+8 -1
rust-toolchain.toml
··· 1 [toolchain] 2 channel = "stable" 3 components = ["rustfmt", "clippy", "rust-analyzer"] 4 - targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "aarch64-unknown-linux-gnu"]
··· 1 [toolchain] 2 channel = "stable" 3 components = ["rustfmt", "clippy", "rust-analyzer"] 4 + targets = [ 5 + "aarch64-apple-darwin", 6 + "x86_64-apple-darwin", 7 + "x86_64-unknown-linux-gnu", 8 + "aarch64-unknown-linux-gnu", 9 + "aarch64-apple-ios", 10 + "aarch64-apple-ios-sim", 11 + ]