Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,12 @@ regex = "1.10"
# Image Processing
image = "0.25"

# Compression
zstd = "0.13"
lz4_flex = "0.11"
brotli = "7.0"
flate2 = "1.1"

# HuggingFace Hub (for loading models)
hf-hub = { version = "0.4", default-features = false, features = ["tokio", "rustls-tls", "ureq"] }

Expand Down
9 changes: 8 additions & 1 deletion crates/synapse-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ chrono = { workspace = true }

# Async Streams
futures = { version = "0.3", default-features = false, features = ["alloc"] }

# Compression
zstd = { workspace = true }
lz4_flex = { workspace = true }
brotli = { workspace = true }
flate2 = { workspace = true }

anyhow = { workspace = true }
surrealdb = { workspace = true }
surrealdb-types = { workspace = true }
Expand All @@ -39,4 +46,4 @@ lazy_static = "1.5.0"

[dev-dependencies]
tokio = { workspace = true }
synapse-infra = { path = "../synapse-infra" }
synapse-infra = { path = "../synapse-infra", default-features = false }
Loading
Loading