清理历史 Electron、Graphify、沙箱和截图等仓库跟踪残留,补充 CodeGraph 与 Convex active deploy source 协作说明。 新增 tree-first 下一阶段设计稿和 2026-05-20 清理总结,记录本地工作区、路径身份和 Zed/Lapce/VSCode 参考收口方向。 扩展 Rust Web 本地文件夹、DocumentBuffer、mindmap 资源、tree runtime 和页面聚合链路,并补充 task455 local-folder mindmap clean smoke。 验证:git diff --check 通过;pnpm store status --store-dir .pnpm-store 通过;npm ls --depth=0 --json 通过;find -L node_modules 未发现断链。cargo test -p mnote-web 当前 418 passed / 35 failed。
31 lines
1.2 KiB
TOML
31 lines
1.2 KiB
TOML
[package]
|
|
name = "mnote-web"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
|
|
[dependencies]
|
|
adapter-onlyoffice = { path = "../adapter-onlyoffice" }
|
|
axum = { version = "0.8", features = ["multipart", "ws"] }
|
|
bridge-runtime = { path = "../bridge-runtime" }
|
|
core-protocol = { path = "../core-protocol" }
|
|
futures-util = "0.3"
|
|
leptos = { version = "0.8.14", default-features = false, features = ["ssr"] }
|
|
mnote-editor-core = { path = "../mnote-editor-core" }
|
|
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls", "stream"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
storage-convex-bridge = { path = "../storage-convex-bridge" }
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", "net", "signal", "sync", "time", "process", "io-util"] }
|
|
tokio-stream = { version = "0.1", features = ["sync"] }
|
|
tokio-tungstenite = "0.29"
|
|
tower-http = { version = "0.6", features = ["trace"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["fmt"] }
|
|
tower = "0.5"
|
|
base64 = "0.22"
|
|
comrak = { version = "0.52", default-features = false }
|
|
notify = "8.2.0"
|
|
time = { version = "0.3", features = ["formatting", "local-offset"] }
|