summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2022-04-13 18:29:18 +0100
committerGitHub <noreply@github.com>2022-04-13 18:29:18 +0100
commitf4240aa62b47850020aa8c3e164d6d3544626f53 (patch)
tree4a68f85825fe2d1b82e277730f7c270b5049e639 /Cargo.lock
parent3c5fbc573443a7a4e59a0b898e1586d219f105eb (diff)
Initial implementation of calendar API (#298)
This can be used in the future for sync so that we can be more intelligent with what we're doing, and only sync up what's needed I'd like to eventually replace this with something more like a merkle tree, hence the hash field I've exposed, but that can come later Although this does include a much larger number of count queries, it should also be significantly more cache-able. I'll follow up with that later, and also follow up with using this for sync :)
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock10
1 files changed, 10 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index e7fe019cf..526d6bc49 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -144,6 +144,7 @@ dependencies = [
"axum",
"base64",
"chrono",
+ "chronoutil",
"config",
"eyre",
"fs-err",
@@ -333,6 +334,15 @@ dependencies = [
]
[[package]]
+name = "chronoutil"
+version = "0.2.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "43a58c924bb772aa201da3acf5308c46b60275c64e6d3bc89c23dd63d71e83fd"
+dependencies = [
+ "chrono",
+]
+
+[[package]]
name = "clap"
version = "3.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"