2024-01-01 14:58:21 -05:00
|
|
|
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2023-11-01 14:57:55 -04:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_cron"
|
2024-11-10 02:42:18 -05:00
|
|
|
version = "0.57.0"
|
2023-11-01 14:57:55 -04: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-30 01:58:06 -04:00
|
|
|
chrono = { workspace = true, features = ["now"] }
|
2023-11-01 14:57:55 -04:00
|
|
|
deno_core.workspace = true
|
|
|
|
saffron.workspace = true
|
2024-10-12 17:23:49 -04:00
|
|
|
thiserror.workspace = true
|
2023-11-01 14:57:55 -04:00
|
|
|
tokio.workspace = true
|