-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 737 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (23 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
authors.workspace = true
edition.workspace = true
license = "AGPL-3.0-or-later"
name = "ahma_renewal"
readme.workspace = true
rust-version.workspace = true
version.workspace = true
description = "Renewal contract for ahma: automatic halt for long-running unattended tasks with checkpoint and re-approval."
[lib]
name = "ahma_renewal"
path = "src/lib.rs"
[dependencies]
ahma_vault = { path = "../ahma_vault" }
anyhow.workspace = true
chrono = { workspace = true }
serde_json.workspace = true
tokio = { workspace = true, features = ["fs", "time"] }
tokio-util.workspace = true
tracing.workspace = true
[dev-dependencies]
tempfile.workspace = true
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "time"] }