2026-03-22 19:07:07 +00:00
|
|
|
[workspace]
|
2026-04-07 16:12:19 +00:00
|
|
|
members = ["server", "crates/bft-json-crdt"]
|
2026-03-22 19:07:07 +00:00
|
|
|
resolver = "3"
|
|
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
|
|
|
|
async-stream = "0.3"
|
|
|
|
|
async-trait = "0.1.89"
|
|
|
|
|
bytes = "1"
|
|
|
|
|
chrono = { version = "0.4.44", features = ["serde"] }
|
2026-04-03 13:12:52 +00:00
|
|
|
chrono-tz = "0.10"
|
2026-03-22 19:07:07 +00:00
|
|
|
eventsource-stream = "0.2.3"
|
|
|
|
|
futures = "0.3"
|
|
|
|
|
homedir = "0.3.6"
|
|
|
|
|
ignore = "0.4.25"
|
|
|
|
|
mime_guess = "2"
|
|
|
|
|
notify = "8.2.0"
|
|
|
|
|
poem = { version = "3", features = ["websocket", "test"] }
|
|
|
|
|
poem-openapi = { version = "5", features = ["swagger-ui"] }
|
|
|
|
|
portable-pty = "0.9.0"
|
|
|
|
|
reqwest = { version = "0.13.2", features = ["json", "stream"] }
|
|
|
|
|
rust-embed = "8"
|
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
|
|
|
|
serde_urlencoded = "0.7"
|
2026-03-31 11:21:50 +01:00
|
|
|
sha2 = "0.11.0"
|
2026-03-22 19:07:07 +00:00
|
|
|
serde_yaml = "0.9"
|
|
|
|
|
strip-ansi-escapes = "0.2"
|
|
|
|
|
tempfile = "3"
|
|
|
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync"] }
|
2026-03-24 21:25:15 +00:00
|
|
|
toml = "1.1.0"
|
2026-03-22 19:07:07 +00:00
|
|
|
uuid = { version = "1.22.0", features = ["v4", "serde"] }
|
2026-04-04 12:08:39 +00:00
|
|
|
tokio-tungstenite = { version = "0.29.0", features = ["connect", "native-tls"] }
|
2026-03-22 19:07:07 +00:00
|
|
|
walkdir = "2.5.0"
|
|
|
|
|
filetime = "0.2"
|
|
|
|
|
matrix-sdk = { version = "0.16.0", default-features = false, features = [
|
|
|
|
|
"rustls-tls",
|
|
|
|
|
"sqlite",
|
|
|
|
|
"e2e-encryption",
|
|
|
|
|
] }
|
2026-03-24 21:25:15 +00:00
|
|
|
pulldown-cmark = { version = "0.13.3", default-features = false, features = [
|
2026-03-22 19:07:07 +00:00
|
|
|
"html",
|
|
|
|
|
] }
|
2026-03-24 21:41:42 +00:00
|
|
|
regex = "1"
|
2026-04-02 10:27:34 +00:00
|
|
|
libc = "0.2"
|
2026-04-07 13:09:48 +00:00
|
|
|
sqlx = { version = "=0.9.0-alpha.1", default-features = false, features = [
|
|
|
|
|
"runtime-tokio",
|
|
|
|
|
"sqlite",
|
|
|
|
|
"macros",
|
|
|
|
|
"migrate",
|
|
|
|
|
] }
|