[PR #4412] [MERGED] Crate wasm build #6241

Closed
opened 2026-03-23 22:22:21 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4412
Author: @appflowy
Created: 1/17/2024
Status: Merged
Merged: 1/22/2024
Merged by: @appflowy

Base: mainHead: crate_wasm_build


📝 Commits (10+)

📊 Changes

43 files changed (+554 additions, -315 deletions)

View changed files

📝 .github/workflows/rust_ci.yaml (+0 -17)
📝 frontend/Makefile.toml (+1 -0)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+150 -96)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+10 -9)
📝 frontend/rust-lib/Cargo.lock (+154 -69)
📝 frontend/rust-lib/Cargo.toml (+8 -8)
📝 frontend/rust-lib/build-tool/flowy-codegen/Cargo.toml (+1 -1)
📝 frontend/rust-lib/build-tool/flowy-derive/Cargo.toml (+0 -8)
frontend/rust-lib/build-tool/flowy-derive/tests/progress.rs (+0 -5)
📝 frontend/rust-lib/collab-integrate/Cargo.toml (+3 -1)
📝 frontend/rust-lib/collab-integrate/src/collab_builder.rs (+65 -34)
📝 frontend/rust-lib/dart-ffi/Cargo.toml (+1 -0)
📝 frontend/rust-lib/flowy-core/src/deps_resolve/folder_deps.rs (+1 -1)
📝 frontend/rust-lib/flowy-database2/Cargo.toml (+4 -2)
📝 frontend/rust-lib/flowy-database2/src/manager.rs (+1 -0)
📝 frontend/rust-lib/flowy-date/Cargo.toml (+3 -0)
📝 frontend/rust-lib/flowy-document/Cargo.toml (+13 -2)
📝 frontend/rust-lib/flowy-document/src/manager.rs (+30 -28)
📝 frontend/rust-lib/flowy-encrypt/Cargo.toml (+9 -1)
📝 frontend/rust-lib/flowy-error/Cargo.toml (+7 -5)

...and 23 more files

📄 Description

  1. supports flowy-document compile as WASM target
  2. CI for WASM check

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/4412 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 1/17/2024 **Status:** ✅ Merged **Merged:** 1/22/2024 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `crate_wasm_build` --- ### 📝 Commits (10+) - [`e176460`](https://github.com/AppFlowy-IO/AppFlowy/commit/e1764607658f6f876563e936bedfc1aaf9db7c49) chore: enable wasm build - [`c138095`](https://github.com/AppFlowy-IO/AppFlowy/commit/c13809561d95080c31efbbd2a6fd035e2c2fac4b) chore: bump collab - [`a9c672d`](https://github.com/AppFlowy-IO/AppFlowy/commit/a9c672df8918b354f516c8f34f1e0d10f5228906) chore: fix build - [`efc3bc9`](https://github.com/AppFlowy-IO/AppFlowy/commit/efc3bc9804001935ebfcd73daaa5bea4ed4dc04d) chore: flowy-document wasm - [`fc5d3bd`](https://github.com/AppFlowy-IO/AppFlowy/commit/fc5d3bd8f6384fc41d934b8defdc88fa15c01769) Merge branch 'main' into crate_wasm_build - [`572cb40`](https://github.com/AppFlowy-IO/AppFlowy/commit/572cb4079b08816970cc3df9c1c3590636227e1c) chore: fix compile - [`bdba65f`](https://github.com/AppFlowy-IO/AppFlowy/commit/bdba65f8a4bfb62d1370e12c120209f1c9a14df1) chore: fix compile - [`79cdab7`](https://github.com/AppFlowy-IO/AppFlowy/commit/79cdab7ae101ef20e5f065fa5a455e5e6a48714e) chore: fix compile - [`94cb629`](https://github.com/AppFlowy-IO/AppFlowy/commit/94cb6296ce66ca013e32402e9e30fdd0687ed196) chore: fix compile - [`f4faa97`](https://github.com/AppFlowy-IO/AppFlowy/commit/f4faa97c5fc447af6912685360277b82b46ea858) chore: fix ci ### 📊 Changes **43 files changed** (+554 additions, -315 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/rust_ci.yaml` (+0 -17) 📝 `frontend/Makefile.toml` (+1 -0) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+150 -96) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+10 -9) 📝 `frontend/rust-lib/Cargo.lock` (+154 -69) 📝 `frontend/rust-lib/Cargo.toml` (+8 -8) 📝 `frontend/rust-lib/build-tool/flowy-codegen/Cargo.toml` (+1 -1) 📝 `frontend/rust-lib/build-tool/flowy-derive/Cargo.toml` (+0 -8) ➖ `frontend/rust-lib/build-tool/flowy-derive/tests/progress.rs` (+0 -5) 📝 `frontend/rust-lib/collab-integrate/Cargo.toml` (+3 -1) 📝 `frontend/rust-lib/collab-integrate/src/collab_builder.rs` (+65 -34) 📝 `frontend/rust-lib/dart-ffi/Cargo.toml` (+1 -0) 📝 `frontend/rust-lib/flowy-core/src/deps_resolve/folder_deps.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/Cargo.toml` (+4 -2) 📝 `frontend/rust-lib/flowy-database2/src/manager.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-date/Cargo.toml` (+3 -0) 📝 `frontend/rust-lib/flowy-document/Cargo.toml` (+13 -2) 📝 `frontend/rust-lib/flowy-document/src/manager.rs` (+30 -28) 📝 `frontend/rust-lib/flowy-encrypt/Cargo.toml` (+9 -1) 📝 `frontend/rust-lib/flowy-error/Cargo.toml` (+7 -5) _...and 23 more files_ </details> ### 📄 Description 1. supports flowy-document compile as WASM target 2. CI for WASM check --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:22:21 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#6241
No description provided.