[package]
edition = "2021"
rust-version = "1.85"
name = "vs-daemon"
version = "0.1.6"
authors = ["Frane Bandov <frane.bandov@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Daemon that owns the browser engine for vibesurfer."
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/frane/vibesurfer"
[lib]
name = "vs_daemon"
path = "src/lib.rs"
[[test]]
name = "end_to_end"
path = "tests/end_to_end.rs"
[[test]]
name = "primitives_10_19"
path = "tests/primitives_10_19.rs"
[[test]]
name = "wire"
path = "tests/wire.rs"
[dependencies.anyhow]
version = "1"
[dependencies.blake3]
version = "1"
[dependencies.interprocess]
version = "2.4.2"
features = ["tokio"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"net",
"sync",
"io-util",
"macros",
"signal",
"time",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.uuid]
version = "1"
features = [
"v7",
"fast-rng",
]
[dependencies.vs-engine-webkit]
version = "0.1.6"
[dependencies.vs-protocol]
version = "0.1.6"
[dependencies.vs-store]
version = "0.1.6"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"net",
"sync",
"io-util",
"macros",
"time",
"test-util",
]
[dev-dependencies.vs-engine-webkit]
version = "0.1.6"
features = ["test-support"]
[lints.clippy]
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "warn"