Compare commits

...

2 commits

Author SHA1 Message Date
asonix 9cb57a03f5 Remove keyword from toplevel 2024-01-18 13:31:21 -05:00
asonix 484e660c5f Add time to tokio features 2024-01-18 13:27:19 -05:00
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ license = "AGPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/background-jobs"
readme = "README.md"
keywords = ["jobs", "processor", "actix", "tokio", "postgres", "sled"]
keywords = ["jobs", "actix", "tokio", "postgres", "sled"]
edition = "2021"
[package.metadata.docs.rs]

View file

@ -20,6 +20,6 @@ serde = { version = "1", features = ["derive"] }
serde_cbor = "0.11"
time = { version = "0.3", features = ["serde-human-readable"] }
thiserror = "1.0"
tokio = { version = "1", default-features = false, features = ["rt", "sync", "tracing"] }
tokio = { version = "1", default-features = false, features = ["rt", "sync", "time", "tracing"] }
tracing = "0.1"
uuid = { version = "1", features = ["v7", "serde"] }