Skip to content

Commit 3d6ae29

Browse files
committed
depnendencies: added chrono and cron
1 parent a8e7043 commit 3d6ae29

File tree

3 files changed

+141
-1
lines changed

3 files changed

+141
-1
lines changed

Cargo.lock

Lines changed: 124 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace]
2-
members = ["adapter/rest", "crates/base"]
2+
members = [ "adapter/cron","adapter/rest", "crates/base"]
33
resolver = "3"
44

55
[workspace.package]
@@ -22,6 +22,8 @@ anyhow = "1.0.98"
2222
prost = "0.14.0"
2323
tonic-health = "0.14.0"
2424
futures-lite = "2.6.1"
25+
chrono = "0.4.42"
26+
cron = "0.15.0"
2527

2628
[workspace.dependencies.base]
2729
path = "../draco/crates/base"

adapter/cron/Cargo.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[package]
2+
name = "cron"
3+
version.workspace = true
4+
edition.workspace = true
5+
6+
[dependencies]
7+
tokio = {workspace = true}
8+
chrono = {workspace = true}
9+
cron = {workspace = true}
10+
base = {workspace = true}
11+
tucana = {workspace = true}
12+
async-trait = {workspace = true}
13+
log = { workspace = true }
14+
anyhow = {workspace = true}

0 commit comments

Comments
 (0)