[package]
edition = "2021"
rust-version = "1.88"
name = "chronon-runtime"
version = "0.1.0"
authors = ["unified-field-dev"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Chronon runtime assembly and ChrononBuilder"
homepage = "https://github.com/unified-field-dev/chronon"
readme = "README.md"
keywords = [
"cron",
"scheduler",
"jobs",
"async",
"tokio",
]
categories = [
"asynchronous",
"date-and-time",
]
license = "MIT"
repository = "https://github.com/unified-field-dev/chronon"
[lib]
name = "chronon_runtime"
path = "src/lib.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.chronon-core]
version = "0.1.0"
[dependencies.chronon-executor]
version = "0.1.0"
[dependencies.chronon-scheduler]
version = "0.1.0"
[dependencies.chronon-telemetry]
version = "0.1.0"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.chronon-backend-mem]
version = "0.1.0"
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
duration_suboptimal_units = "allow"
ignored_unit_patterns = "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"
option_if_let_else = "allow"
redundant_clone = "warn"
redundant_closure = "allow"
redundant_closure_for_method_calls = "allow"
redundant_pub_crate = "allow"
return_self_not_must_use = "allow"
significant_drop_tightening = "allow"
uninlined_format_args = "allow"
unnecessary_wraps = "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"