[package]
edition = "2024"
rust-version = "1.88"
name = "synwire-daemon"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Singleton background daemon for Synwire — manages embeddings, indexing, and multi-repo state"
homepage = "https://randomvariable.github.io/synwire/"
documentation = "https://docs.rs/synwire"
readme = "README.md"
keywords = [
"llm",
"ai",
"agents",
"langchain",
"async",
]
categories = [
"asynchronous",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/randomvariable/synwire"
resolver = "2"
[lib]
name = "synwire_daemon"
path = "src/lib.rs"
[[bin]]
name = "synwire-daemon"
path = "src/main.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.synwire-index]
version = "0.1.0"
[dependencies.synwire-storage]
version = "0.1.0"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dev-dependencies.tempfile]
version = "3"
[target."cfg(unix)".dependencies.nix]
version = "0.29"
features = [
"process",
"signal",
"mount",
"sched",
"user",
"term",
"socket",
"fs",
]
[lints.clippy]
dbg_macro = "deny"
expect_used = "deny"
missing_errors_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
panic = "deny"
print_stderr = "deny"
print_stdout = "deny"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
dead_code = "deny"
missing_docs = "deny"
unsafe_code = "deny"
unused_imports = "deny"
unused_results = "deny"