2025-01-01 04:12:39 +09:00
|
|
|
# Copyright 2018-2025 the Deno authors. MIT license.
|
2023-11-01 11:57:55 -07:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_cron"
|
2025-01-09 17:38:18 -05:00
|
|
|
version = "0.65.0"
|
2023-11-01 11:57:55 -07:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
readme = "README.md"
|
|
|
|
repository.workspace = true
|
|
|
|
description = "Implementation of the Deno cron API"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow.workspace = true
|
|
|
|
async-trait.workspace = true
|
2024-05-29 22:58:06 -07:00
|
|
|
chrono = { workspace = true, features = ["now"] }
|
2023-11-01 11:57:55 -07:00
|
|
|
deno_core.workspace = true
|
2025-01-08 14:52:32 -08:00
|
|
|
deno_error.workspace = true
|
2023-11-01 11:57:55 -07:00
|
|
|
saffron.workspace = true
|
2024-10-12 14:23:49 -07:00
|
|
|
thiserror.workspace = true
|
2023-11-01 11:57:55 -07:00
|
|
|
tokio.workspace = true
|