From daf73ae6f300448342230a86da4d67c003ff3f91 Mon Sep 17 00:00:00 2001 From: myl7 Date: Mon, 16 Oct 2023 14:26:40 +0800 Subject: [PATCH] Switch from path dep to git dep --- Cargo.lock | 2 ++ Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 524afaa..a68e56d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -383,6 +383,7 @@ dependencies = [ [[package]] name = "cbc-aes256-pkcs7-compact" version = "0.1.1" +source = "git+https://github.com/myl7/double-ratchet-signal.git#6110f918c1c9042827290e863774d3cf1d59a355" dependencies = [ "aes 0.8.3", "cbc", @@ -707,6 +708,7 @@ dependencies = [ [[package]] name = "double-ratchet-signal" version = "0.1.3" +source = "git+https://github.com/myl7/double-ratchet-signal.git#6110f918c1c9042827290e863774d3cf1d59a355" dependencies = [ "aes 0.6.0", "block-modes", diff --git a/Cargo.toml b/Cargo.toml index 8dff3dd..d208d3d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ anyhow = "1.0.75" async-trait = "0.1.73" dcf = { version = "0.5.0", features = ["prg"] } double-ratchet = "0.1.0" -double-ratchet-signal = { path = "../double-ratchet-signal/double-ratchet-signal", version = "0.1.3" } +double-ratchet-signal = { git = "https://github.com/myl7/double-ratchet-signal.git", version = "0.1.3" } dpf-fss = { version = "0.5.0", features = ["prg"] } group-math = { version = "0.2.1", features = ["int"] } hex = "0.4.3"