aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorJoris2022-02-20 09:33:55 +0100
committerJoris2022-02-20 09:33:55 +0100
commit1445e23a26c6581ad0c3f5b5016e47e95d224e9f (patch)
tree18bd4288fbcf52279a69de50be5bad6cc7db3c75 /Cargo.lock
parent6c47403b11e7aaf1a22778bdc7615051779cb7bd (diff)
downloadcalendar-1445e23a26c6581ad0c3f5b5016e47e95d224e9f.tar.gz
calendar-1445e23a26c6581ad0c3f5b5016e47e95d224e9f.tar.bz2
calendar-1445e23a26c6581ad0c3f5b5016e47e95d224e9f.zip
Save repetition in events
But don’t show repetead events for now.
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock40
1 files changed, 40 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 359f991..9671306 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -82,6 +82,8 @@ dependencies = [
"gtk4",
"rusqlite",
"rusqlite_migration",
+ "serde",
+ "serde_json",
"uuid",
]
@@ -118,6 +120,7 @@ dependencies = [
"libc",
"num-integer",
"num-traits",
+ "serde",
"time",
"winapi",
]
@@ -520,6 +523,12 @@ dependencies = [
]
[[package]]
+name = "itoa"
+version = "1.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
+
+[[package]]
name = "libc"
version = "0.2.112"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -724,6 +733,12 @@ dependencies = [
]
[[package]]
+name = "ryu"
+version = "1.0.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
+
+[[package]]
name = "semver"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -746,6 +761,31 @@ name = "serde"
version = "1.0.130"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913"
+dependencies = [
+ "serde_derive",
+]
+
+[[package]]
+name = "serde_derive"
+version = "1.0.130"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn",
+]
+
+[[package]]
+name = "serde_json"
+version = "1.0.74"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ee2bb9cd061c5865d345bb02ca49fcef1391741b672b54a0bf7b679badec3142"
+dependencies = [
+ "itoa",
+ "ryu",
+ "serde",
+]
[[package]]
name = "slab"