Skip to content

Commit

Permalink
relative imports for development
Browse files Browse the repository at this point in the history
  • Loading branch information
ypopovych committed Oct 20, 2023
1 parent 83acaa7 commit 6fad572
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Rust/tesseract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion Rust/transports/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 6fad572

Please sign in to comment.