[package]
edition = "2021"
name = "tutti-daemon"
version = "0.1.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Daemon for Tutti"
readme = false
license = "MIT"
repository = "https://github.com/ya7on/tutti"
[lib]
name = "tutti_daemon"
path = "src/lib.rs"
[dependencies.futures-util]
version = "0.3"
features = [
"std",
"sink",
]
[dependencies.libc]
version = "0.2"
[dependencies.tokio]
version = ">=1.23.1, <2"
features = [
"full",
"full",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tutti-core]
version = "0.1.5"
[dependencies.tutti-transport]
version = "0.1.5"
[lints.clippy]
expect_used = "warn"
unwrap_used = "deny"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
dead_code = "warn"
missing_debug_implementations = "warn"
missing_docs = "allow"
unsafe_code = "deny"
unused_imports = "warn"
[lints.rust.unused]
level = "warn"
priority = -1