From 6fad57239efcf8e4feeb652817b735a51da9c4d9 Mon Sep 17 00:00:00 2001 From: Yehor Popovych Date: Fri, 20 Oct 2023 18:46:16 +0100 Subject: [PATCH] relative imports for development --- Rust/tesseract/Cargo.toml | 6 +++--- Rust/transports/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Rust/tesseract/Cargo.toml b/Rust/tesseract/Cargo.toml index 210763d..06fad43 100644 --- a/Rust/tesseract/Cargo.toml +++ b/Rust/tesseract/Cargo.toml @@ -10,9 +10,9 @@ edition = "2021" [dependencies] tesseract-swift-utils = { path = "../utils" } tesseract-swift-transports = { path = "../transports" } -tesseract = { git = "https://github.com/tesseract-one/Tesseract.rs", branch = "master" } -tesseract-protocol-test = { git = "https://github.com/tesseract-one/Tesseract.rs", branch = "master", optional = true } -tesseract-protocol-substrate = { git = "https://github.com/tesseract-one/Tesseract.rs", branch = "master", optional = true } +tesseract = { path = "../../../Tesseract.rs/tesseract" } +tesseract-protocol-test = { path = "../../../Tesseract.rs/protocols/test", optional = true } +tesseract-protocol-substrate = { path = "../../../Tesseract.rs/protocols/substrate", optional = true } async-trait = "0.1" errorcon = "0.1" log = "0.3.9" diff --git a/Rust/transports/Cargo.toml b/Rust/transports/Cargo.toml index f0032d6..0fdb393 100644 --- a/Rust/transports/Cargo.toml +++ b/Rust/transports/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" [dependencies] tesseract-swift-utils = { path = "../utils" } -tesseract = { git = "https://github.com/tesseract-one/Tesseract.rs", branch = "master"} +tesseract = { path = "../../../Tesseract.rs/tesseract" } async-trait = "0.1" errorcon = "0.1" log = "0.3.9"