[package]
edition = "2021"
name = "spectra-runtime"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SpectraBuilder, composite sink, and process install"
readme = "README.md"
license = "MIT"
repository = "https://github.com/unified-field-dev/spectra"
[features]
default = []
telemetry-console = []
[lib]
name = "spectra_runtime"
path = "src/lib.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.log]
version = "0.4"
[dependencies.serde_json]
version = "1"
[dependencies.spectra-core]
version = "0.1.0"
package = "uf-spectra-core"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"sync",
"time",
"macros",
]
[dev-dependencies.spectra-backend-mem]
version = "0.1.0"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[lints.clippy]
await_holding_lock = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
default_trait_access = "allow"
doc_markdown = "allow"
duration_suboptimal_units = "allow"
float_cmp = "allow"
future_not_send = "allow"
ignored_unit_patterns = "allow"
let_and_return = "allow"
manual_let_else = "allow"
map_unwrap_or = "allow"
match_like_matches_macro = "allow"
match_same_arms = "allow"
match_wildcard_for_single_variants = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
no_effect_underscore_binding = "allow"
option_if_let_else = "allow"
ptr_as_ptr = "allow"
redundant_clone = "warn"
redundant_closure = "allow"
redundant_closure_for_method_calls = "allow"
redundant_pub_crate = "allow"
return_self_not_must_use = "allow"
semicolon_if_nothing_returned = "allow"
significant_drop_tightening = "allow"
single_match = "allow"
single_match_else = "allow"
too_long_first_doc_paragraph = "allow"
uninlined_format_args = "allow"
unnecessary_wraps = "allow"
unnested_or_patterns = "allow"
unreadable_literal = "allow"
unused_async = "allow"
use_self = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "deny"
unsafe_code = "forbid"
[lints.rustdoc]
broken_intra_doc_links = "warn"
private_intra_doc_links = "allow"
redundant_explicit_links = "allow"