From 04b48febcc436155860c6c252213cdcccbd971e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johanna=20S=C3=B6rng=C3=A5rd?= Date: Mon, 18 Dec 2023 16:42:53 +0100 Subject: [PATCH] Specify local versions --- codec/Cargo.toml | 4 ++-- macro/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/codec/Cargo.toml b/codec/Cargo.toml index 99dee91..158fd6b 100644 --- a/codec/Cargo.toml +++ b/codec/Cargo.toml @@ -11,8 +11,8 @@ description = "A crate for converting an ASCII text string to a single unicode g # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -zalgo-codec-common = "0.9.4" -zalgo-codec-macro = {version = "0.1.19", optional = true} +zalgo-codec-common = {path = "../common"} +zalgo-codec-macro = {path = "../macro", optional = true} anyhow = "1.0" iced = {version = "0.10", optional = true} rfd = {version = "0.12", optional = true} diff --git a/macro/Cargo.toml b/macro/Cargo.toml index bfcf5b6..9bc7eef 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -15,5 +15,5 @@ proc-macro = true [dependencies] -zalgo-codec-common = "0.9.4" +zalgo-codec-common = {path = "../common"} syn = "2.0"