[package]
edition = "2024"
rust-version = "1.92"
name = "dais-remote"
version = "0.2.0"
authors = ["Christopher T. Kenny"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local HTTP remote-control API for Dais"
homepage = "https://github.com/christopherkenny/dais"
documentation = "https://docs.rs/dais-remote"
readme = "README.md"
keywords = [
"pdf",
"presentation",
"slides",
]
categories = [
"command-line-utilities",
"multimedia",
]
license = "MIT"
repository = "https://github.com/christopherkenny/dais"
resolver = "2"
[lib]
name = "dais_remote"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-stream]
version = "0.3.6"
[dependencies.axum]
version = "0.8.9"
[dependencies.dais-core]
version = "0.2.0"
[dependencies.dais-document]
version = "0.2.0"
[dependencies.fastrand]
version = "2"
[dependencies.futures-core]
version = "0.3.32"
[dependencies.image]
version = "0.25"
[dependencies.reqwest]
version = "0.13.4"
features = [
"blocking",
"json",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1.52.3"
features = [
"net",
"rt-multi-thread",
"sync",
"time",
]
[dependencies.tower-http]
version = "0.7.0"
features = ["sensitive-headers"]
[dependencies.tracing]
version = "0.1"
[lints.clippy]
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
struct_excessive_bools = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "warn"