2026-03-22 19:07:07 +00:00
|
|
|
[package]
|
2026-04-03 16:12:52 +01:00
|
|
|
name = "huskies"
|
2026-04-03 17:07:30 +01:00
|
|
|
version = "0.9.0"
|
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
|
|
|
eventsource-stream = { workspace = true }
|
|
|
|
|
futures = { workspace = true }
|
|
|
|
|
homedir = { workspace = true }
|
|
|
|
|
ignore = { workspace = true }
|
|
|
|
|
mime_guess = { workspace = true }
|
|
|
|
|
notify = { workspace = true }
|
|
|
|
|
poem = { workspace = true, features = ["websocket"] }
|
|
|
|
|
poem-openapi = { workspace = true, features = ["swagger-ui"] }
|
|
|
|
|
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-03-26 19:58:18 +00:00
|
|
|
sha2 = { workspace = true }
|
2026-03-22 19:07:07 +00:00
|
|
|
serde_yaml = { workspace = true }
|
|
|
|
|
strip-ansi-escapes = { workspace = true }
|
|
|
|
|
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
|
|
|
|
|
|
|
|
# Force bundled SQLite so static musl builds don't need a system libsqlite3
|
|
|
|
|
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-07 16:12:19 +00:00
|
|
|
fastcrypto = "0.1.8"
|
|
|
|
|
indexmap = { version = "2.2.6", features = ["serde"] }
|
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 }
|
2026-04-09 21:03:07 +01:00
|
|
|
# For the pipeline_state_sketch_statig example only.
|
|
|
|
|
statig = "0.3"
|