Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ uuid = { version = "1.6", features = ["v4", "serde"] }

# Time handling
chrono = { version = "0.4", features = ["serde"] }
# Cron parsing for the `serve` schedules (gated behind the `serve` feature).
cron = { version = "0.12", optional = true }
rquickjs = { version = "0.11.0", features = ["futures"] }

# S3-compatible workspace backend (optional, gated by `s3` feature)
Expand Down Expand Up @@ -137,6 +139,9 @@ s3 = [
"dep:aws-smithy-types",
"dep:aws-smithy-runtime-api",
]
# Enable the durable serve layer: cron schedules + (later) channels + serve daemon
# for filesystem-first agents. Library-only embedders pay nothing without it.
serve = ["dep:cron"]

[dev-dependencies]
# AHP for integration tests
Expand All @@ -147,3 +152,5 @@ wiremock = "0.6"
# Self-signed cert generation for mTLS happy-path tests. Production code does
# not depend on rcgen.
rcgen = "0.13"
# Implement the async ScheduleSink trait in serve integration tests.
async-trait = "0.1"
Loading
Loading