KeiSeiKit-1.0/_primitives/_rust/kei-cron-scheduler/Cargo.toml
Parfii-bot fc03c98408 chore: author email + Cargo metadata SSoT (parfionovich@keilab.io)
Two related changes:

1. Author email update across the kit
   - All `info@greendragon.info` references replaced with `parfionovich@keilab.io`
   - Touched: NOTICE, README.md, _ts_packages/package.json (and 5 adapter packages),
     plus 90+ Cargo.toml files
   - Apache-2.0 attribution unchanged (Denis Parfionovich, 2026)

2. Cargo workspace.package SSoT for author/license/repository/homepage
   - Added to [workspace.package]:
     authors    = ["Denis Parfionovich <parfionovich@keilab.io>"]
     license    = "Apache-2.0"
     repository = "https://github.com/KeiSei84/KeiSeiKit-1.0"
     homepage   = "https://github.com/KeiSei84/KeiSeiKit-1.0"
   - All ~89 member crates migrated from inline declarations to:
     authors.workspace    = true
     license.workspace    = true
     (repository/homepage where applicable)
   - Closes audit gap: kei-graph-stream, kei-cortex, kei-shared previously had no
     license field at the crate level, blocking `cargo publish` on those.
     Now they inherit Apache-2.0 from workspace.
   - kei-scheduler/Cargo.toml: removed stray duplicate `authors` line introduced
     by an earlier migration sweep.

cargo check --workspace: clean. No code changes; metadata-only migration.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-03 13:55:28 +08:00

43 lines
1.3 KiB
TOML

[package]
name = "kei-cron-scheduler"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
description = "P4.2 — Hermes-equivalent cron/at/interval scheduler with JSON persistence."
authors.workspace = true
license.workspace = true
# NOTE: a separate crate `kei-scheduler` already exists in the workspace using
# SQLite-backed metadata. This crate is the Hermes-port surface (JSON-on-disk,
# `~/.keiseikit/scheduler/jobs.json` SSoT, fcntl-locked read-modify-write).
# The two crates can coexist — they serve different deployment shapes:
# - kei-scheduler : queryable metadata DB, SQL filters
# - kei-cron-scheduler : flat-file portable schedule, easy backup, Hermes parity
#
# Feature flags
# default — none required; the JSON store and tokio runner are always compiled
#
# Future feature gates (not yet wired):
# prometheus — emit metrics from the runner
# webhook — outbound HTTP delivery target
[features]
default = []
[lib]
name = "kei_cron_scheduler"
path = "src/lib.rs"
[dependencies]
tokio = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
anyhow = { workspace = true }
thiserror = { workspace = true }
chrono = { workspace = true }
cron = "0.15"
fs2 = "0.4"
[dev-dependencies]
tempfile = { workspace = true }
pretty_assertions = { workspace = true }