-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dave Kaj
committed
Oct 16, 2024
1 parent
944ce3d
commit 1673b79
Showing
3 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] | ||
|