From 29c154980201e813d05ad73896489963fc137cde Mon Sep 17 00:00:00 2001 From: Christopher Sardegna Date: Sun, 6 Oct 2024 13:57:55 -0700 Subject: [PATCH] Pin deps to exact versions --- imessage-database/Cargo.toml | 16 ++++++++-------- imessage-exporter/Cargo.toml | 10 +++++----- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/imessage-database/Cargo.toml b/imessage-database/Cargo.toml index f3d0dc4a..ada42dbe 100644 --- a/imessage-database/Cargo.toml +++ b/imessage-database/Cargo.toml @@ -10,13 +10,13 @@ repository = "https://github.com/ReagentX/imessage-exporter" version = "0.0.0" [dependencies] -chrono = "0.4.38" -plist = "1.7.0" -rusqlite = { version = "0.32.1", features = ["blob", "bundled"] } -sha1 = "0.10.6" -protobuf = "3.5.1" -lzma-rs = "0.3.0" +chrono = "=0.4.38" +plist = "=1.7.0" +rusqlite = { version = "=0.32.1", features = ["blob", "bundled"] } +sha1 = "=0.10.6" +protobuf = "=3.5.1" +lzma-rs = "=0.3.0" [build-dependencies] -protobuf = "3.5.1" -protobuf-codegen = "3.5.1" +protobuf = "=3.5.1" +protobuf-codegen = "=3.5.1" diff --git a/imessage-exporter/Cargo.toml b/imessage-exporter/Cargo.toml index 18b972ed..7c18633e 100644 --- a/imessage-exporter/Cargo.toml +++ b/imessage-exporter/Cargo.toml @@ -10,10 +10,10 @@ repository = "https://github.com/ReagentX/imessage-exporter" version = "0.0.0" [dependencies] -clap = { version = "4.5.11", features = ["cargo"] } -filetime = "0.2.23" -fdlimit = "0.3.0" -fs2 = "0.4.3" +clap = { version = "=4.5.11", features = ["cargo"] } +filetime = "=0.2.23" +fdlimit = "=0.3.0" +fs2 = "=0.4.3" imessage-database = { path = "../imessage-database" } -indicatif = "0.17.8" +indicatif = "=0.17.8" rusqlite = { version = "0.32.1", features = ["blob", "bundled"] }