From 1673b7960a201ea1c2d44a29c38e87b45f7ee8ee Mon Sep 17 00:00:00 2001 From: Dave Kaj Date: Wed, 16 Oct 2024 19:20:54 -0400 Subject: [PATCH] Fix bug --- crates/cli/src/handler/init.rs | 3 +-- examples/transfers/contracts/Cargo.toml | 2 +- examples/transfers/enclave/Cargo.toml | 7 ++++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/crates/cli/src/handler/init.rs b/crates/cli/src/handler/init.rs index 7d4ef33c..3d7a17c2 100644 --- a/crates/cli/src/handler/init.rs +++ b/crates/cli/src/handler/init.rs @@ -45,8 +45,7 @@ impl Handler for InitRequest { overwrite: true, vcs: Some(Vcs::Git), template_path: TemplatePath { - git: Some("git@github.com:informalsystems/cycles-quartz.git".to_string()), // Use the GitHub repository - path: Some("examples/transfers".to_string()), // Subdirectory where the template is located + git: Some("git@github.com:informalsystems/cycles-quartz.git".to_string()), ..TemplatePath::default() }, ..GenerateArgs::default() diff --git a/examples/transfers/contracts/Cargo.toml b/examples/transfers/contracts/Cargo.toml index 28dde352..3ff80838 100644 --- a/examples/transfers/contracts/Cargo.toml +++ b/examples/transfers/contracts/Cargo.toml @@ -49,7 +49,7 @@ cw-storage-plus = { version = "2.0.0", default-features = false } cw-utils = { version = "2.0.0", default-features = false } # quartz -quartz-common = { git = "ssh://git@github.com/informalsystems/cycles-quartz.git", features = ["contract"], path = "crates/common", branch = "main" } +quartz-common = { git = "ssh://git@github.com/informalsystems/cycles-quartz.git", package = "quartz-common", features = ["contract"], branch = "main" } # patch indirect deps getrandom = { version = "0.2.15", features = ["js"] } diff --git a/examples/transfers/enclave/Cargo.toml b/examples/transfers/enclave/Cargo.toml index eb663c56..b243a00b 100644 --- a/examples/transfers/enclave/Cargo.toml +++ b/examples/transfers/enclave/Cargo.toml @@ -71,9 +71,10 @@ tendermint-light-client = { version = "=0.38.1", default-features = false, featu transfers-contract = { path = "../contracts", default-features = false } # quartz -cw-client = { git = "ssh://git@github.com/informalsystems/cycles-quartz.git", path = "crates/utils/cw-client", default-features = false } -quartz-common = { git = "ssh://git@github.com/informalsystems/cycles-quartz.git", path = "crates/common", features = ["full"] } -quartz-tm-prover = { git = "ssh://git@github.com/informalsystems/cycles-quartz.git", path = "crates/utils/tm-prover", default-features = false } +cw-client = { git = "ssh://git@github.com/informalsystems/cycles-quartz.git", package = "cw-client", default-features = false } +quartz-common = { git = "ssh://git@github.com/informalsystems/cycles-quartz.git", package = "quartz-common", features = ["full"] } +quartz-tm-prover = { git = "ssh://git@github.com/informalsystems/cycles-quartz.git", package = "tm-prover", default-features = false } + [dev-dependencies]