Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Kaj committed Oct 16, 2024
1 parent 944ce3d commit 1673b79
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
3 changes: 1 addition & 2 deletions crates/cli/src/handler/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ impl Handler for InitRequest {
overwrite: true,
vcs: Some(Vcs::Git),
template_path: TemplatePath {
git: Some("[email protected]:informalsystems/cycles-quartz.git".to_string()), // Use the GitHub repository
path: Some("examples/transfers".to_string()), // Subdirectory where the template is located
git: Some("[email protected]:informalsystems/cycles-quartz.git".to_string()),
..TemplatePath::default()
},
..GenerateArgs::default()
Expand Down
2 changes: 1 addition & 1 deletion examples/transfers/contracts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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://[email protected]/informalsystems/cycles-quartz.git", features = ["contract"], path = "crates/common", branch = "main" }
quartz-common = { git = "ssh://[email protected]/informalsystems/cycles-quartz.git", package = "quartz-common", features = ["contract"], branch = "main" }

# patch indirect deps
getrandom = { version = "0.2.15", features = ["js"] }
Expand Down
7 changes: 4 additions & 3 deletions examples/transfers/enclave/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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://[email protected]/informalsystems/cycles-quartz.git", path = "crates/utils/cw-client", default-features = false }
quartz-common = { git = "ssh://[email protected]/informalsystems/cycles-quartz.git", path = "crates/common", features = ["full"] }
quartz-tm-prover = { git = "ssh://[email protected]/informalsystems/cycles-quartz.git", path = "crates/utils/tm-prover", default-features = false }
cw-client = { git = "ssh://[email protected]/informalsystems/cycles-quartz.git", package = "cw-client", default-features = false }
quartz-common = { git = "ssh://[email protected]/informalsystems/cycles-quartz.git", package = "quartz-common", features = ["full"] }
quartz-tm-prover = { git = "ssh://[email protected]/informalsystems/cycles-quartz.git", package = "tm-prover", default-features = false }



[dev-dependencies]
Expand Down

0 comments on commit 1673b79

Please sign in to comment.