2026-04-16 22:01:51 +08:00
|
|
|
[package]
|
|
|
|
|
name = "mnote-web"
|
|
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
authors.workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2026-05-11 08:27:52 +08:00
|
|
|
adapter-onlyoffice = { path = "../adapter-onlyoffice" }
|
|
|
|
|
axum = { version = "0.8", features = ["multipart", "ws"] }
|
2026-04-16 22:01:51 +08:00
|
|
|
bridge-runtime = { path = "../bridge-runtime" }
|
2026-05-22 17:45:22 +08:00
|
|
|
control-plane = { path = "../control-plane" }
|
2026-04-16 22:01:51 +08:00
|
|
|
core-protocol = { path = "../core-protocol" }
|
|
|
|
|
futures-util = "0.3"
|
2026-05-21 05:40:06 +08:00
|
|
|
hyper = "1"
|
|
|
|
|
hyper-util = { version = "0.1", features = ["tokio"] }
|
2026-04-18 09:38:16 +08:00
|
|
|
leptos = { version = "0.8.14", default-features = false, features = ["ssr"] }
|
2026-04-19 21:03:25 +08:00
|
|
|
mnote-editor-core = { path = "../mnote-editor-core" }
|
2026-05-06 21:44:20 +08:00
|
|
|
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls", "stream"] }
|
2026-04-16 22:01:51 +08:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
2026-05-17 16:15:52 +08:00
|
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", "net", "signal", "sync", "time", "process", "io-util"] }
|
|
|
|
|
tokio-stream = { version = "0.1", features = ["sync"] }
|
2026-05-11 13:16:34 +08:00
|
|
|
tokio-tungstenite = "0.29"
|
2026-04-16 22:01:51 +08:00
|
|
|
tower-http = { version = "0.6", features = ["trace"] }
|
|
|
|
|
tracing = "0.1"
|
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["fmt"] }
|
|
|
|
|
tower = "0.5"
|
|
|
|
|
base64 = "0.22"
|
2026-05-08 10:57:24 +08:00
|
|
|
comrak = { version = "0.52", default-features = false }
|
2026-05-08 11:23:08 +08:00
|
|
|
notify = "8.2.0"
|
2026-05-20 10:43:38 +08:00
|
|
|
time = { version = "0.3", features = ["formatting", "local-offset"] }
|
2026-05-22 17:45:22 +08:00
|
|
|
uuid = { version = "1", features = ["v4"] }
|
2026-06-01 09:29:12 +08:00
|
|
|
zip = "2"
|