2026-03-22 19:07:07 +00:00
|
|
|
[package]
|
2026-04-03 16:12:52 +01:00
|
|
|
name = "huskies"
|
2026-04-21 12:48:56 +01:00
|
|
|
version = "0.10.4"
|
2026-03-22 19:07:07 +00:00
|
|
|
edition = "2024"
|
|
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
async-stream = { workspace = true }
|
|
|
|
|
async-trait = { workspace = true }
|
|
|
|
|
bytes = { workspace = true }
|
|
|
|
|
chrono = { workspace = true, features = ["serde"] }
|
2026-04-03 13:12:52 +00:00
|
|
|
chrono-tz = { workspace = true }
|
2026-03-22 19:07:07 +00:00
|
|
|
futures = { workspace = true }
|
|
|
|
|
homedir = { workspace = true }
|
|
|
|
|
ignore = { workspace = true }
|
|
|
|
|
mime_guess = { workspace = true }
|
|
|
|
|
notify = { workspace = true }
|
|
|
|
|
poem = { workspace = true, features = ["websocket"] }
|
|
|
|
|
portable-pty = { workspace = true }
|
2026-03-24 17:33:56 +00:00
|
|
|
reqwest = { workspace = true, features = ["json", "stream", "form"] }
|
2026-03-22 19:07:07 +00:00
|
|
|
rust-embed = { workspace = true }
|
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
serde_urlencoded = { workspace = true }
|
2026-04-28 23:12:31 +00:00
|
|
|
sha1 = { workspace = true }
|
2026-03-26 19:58:18 +00:00
|
|
|
sha2 = { workspace = true }
|
2026-04-28 20:44:31 +00:00
|
|
|
hmac = { workspace = true }
|
|
|
|
|
subtle = { workspace = true }
|
2026-04-28 23:12:31 +00:00
|
|
|
base64 = { workspace = true }
|
2026-03-22 19:07:07 +00:00
|
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "sync", "process"] }
|
|
|
|
|
toml = { workspace = true }
|
|
|
|
|
uuid = { workspace = true, features = ["v4", "serde"] }
|
|
|
|
|
walkdir = { workspace = true }
|
|
|
|
|
matrix-sdk = { workspace = true }
|
|
|
|
|
pulldown-cmark = { workspace = true }
|
2026-03-24 21:41:42 +00:00
|
|
|
regex = { workspace = true }
|
2026-04-04 12:08:39 +00:00
|
|
|
tokio-tungstenite = { workspace = true }
|
2026-03-22 19:07:07 +00:00
|
|
|
|
2026-05-14 19:27:39 +01:00
|
|
|
# Listed here to enable the `bundled` feature, which propagates via Cargo's
|
|
|
|
|
# feature unification to sqlx-sqlite and matrix-sdk-sqlite (rusqlite) so the
|
|
|
|
|
# static musl docker build can compile SQLite from source instead of linking
|
|
|
|
|
# against a missing system libsqlite3.
|
|
|
|
|
#
|
|
|
|
|
# The 0.35 pin is the ceiling: rusqlite 0.37 (matrix-sdk-sqlite) requires
|
|
|
|
|
# 0.35.x exactly, and sqlx-sqlite 0.9.0-alpha.1 requires >=0.30, <0.36. Bumping
|
|
|
|
|
# this needs one of those upstreams to widen their range first.
|
2026-03-22 19:07:07 +00:00
|
|
|
libsqlite3-sys = { version = "0.35.0", features = ["bundled"] }
|
2026-04-07 13:09:48 +00:00
|
|
|
sqlx = { workspace = true }
|
2026-03-22 19:07:07 +00:00
|
|
|
wait-timeout = "0.2.1"
|
2026-04-07 16:15:38 +00:00
|
|
|
bft-json-crdt = { path = "../crates/bft-json-crdt", default-features = false, features = ["bft"] }
|
2026-04-28 20:22:22 +00:00
|
|
|
source-map-gen = { path = "../crates/source-map-gen" }
|
2026-05-13 15:07:11 +00:00
|
|
|
ed25519-dalek = { workspace = true }
|
2026-05-13 12:28:37 +00:00
|
|
|
rand = { workspace = true }
|
2026-05-14 12:53:14 +00:00
|
|
|
nutype = { workspace = true }
|
|
|
|
|
garde = { workspace = true }
|
|
|
|
|
ammonia = { workspace = true }
|
2026-03-22 19:07:07 +00:00
|
|
|
|
2026-04-02 10:27:34 +00:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
|
libc = { workspace = true }
|
|
|
|
|
|
2026-04-09 19:46:29 +01:00
|
|
|
[lints.rust.unexpected_cfgs]
|
|
|
|
|
level = "warn"
|
|
|
|
|
check-cfg = ["cfg(feature, values(\"logging-base\"))"]
|
|
|
|
|
|
2026-03-22 19:07:07 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
|
tempfile = { workspace = true }
|
|
|
|
|
mockito = "1"
|
|
|
|
|
filetime = { workspace = true }
|