[package]
edition = "2024"
rust-version = "1.92"
name = "dais-core"
version = "0.1.0"
authors = ["Christopher T. Kenny"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types, command bus, and state machine for Dais"
homepage = "https://github.com/christopherkenny/dais"
documentation = "https://docs.rs/dais-core"
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_core"
path = "src/lib.rs"
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.directories]
version = "6"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.8"
[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"