synq-core-os/Cargo.toml
Synq Imaging a9c7030552 [autosave] milestone/2.1-stream-ui @ 2026-05-08T09:31:36-07:00
2 files changed, +34/-908 lines

M	Cargo.lock
M	Cargo.toml
2026-05-08 09:31:36 -07:00

87 lines
2.2 KiB
TOML
Executable file

[workspace]
members = [
"crates/synq-protocol",
"crates/synq-security",
"crates/synq-backend",
"crates/synq-core",
"crates/synq-agents",
"crates/synq-cli",
"crates/synq-guard",
"crates/synq-shell",
"crates/synq-intel",
"synq-mobile/src-tauri",
"tests",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.85"
authors = ["Synq Team <team@synq.io>"]
license = "MIT"
repository = "https://gitlab.com/qazcorporation-corp/synq-core-os"
[workspace.dependencies]
# Async runtime
tokio = { version = "1.40", features = ["full"] }
# Database
sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "uuid", "chrono", "json", "migrate"] }
pgvector = { version = "0.4", features = ["sqlx"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# IDs and time
uuid = { version = "1.10", features = ["v4", "serde", "fast-rng"] }
chrono = { version = "0.4", features = ["serde", "clock"] }
# Errors
thiserror = "2.0"
anyhow = "1.0"
# Observability
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json", "fmt"] }
# HTTP
reqwest = { version = "0.12", features = ["json", "rustls-tls", "stream"], default-features = false }
# Cryptography
ed25519-dalek = { version = "2.1", features = ["rand_core"] }
sha2 = "0.10"
base64 = "0.22"
rand = "0.8"
# Utilities
regex = "1.11"
config = "0.14"
dotenvy = "0.15"
clap = { version = "4.5", features = ["derive"] }
async-trait = "0.1"
statrs = "0.17"
# Tauri v2
tauri = { version = "2.0", features = [] }
tauri-build = { version = "2.0", features = [] }
# Workspace crates
synq-protocol = { path = "crates/synq-protocol" }
synq-security = { path = "crates/synq-security" }
synq-backend = { path = "crates/synq-backend" }
synq-core = { path = "crates/synq-core" }
synq-agents = { path = "crates/synq-agents" }
# HTTP server
axum = { version = "0.7", features = ["json", "ws", "macros"] }
tower = { version = "0.5", features = ["util", "limit"] }
tower-http = { version = "0.6", features = ["cors", "compression-gzip", "compression-br", "fs", "trace"] }
# Compression
flate2 = "1.0"
brotli = "7.0"
# Dev dependencies for benchmarks
criterion = { version = "0.5", features = ["html_reports"] }