-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: re-structure
basecoin-rs
(#156)
* feat: split out modules * feat: re-organize repo with focus on ibc-testkit integration * fix: make clippy happy + rename main.rs to basecoin.rs * fix: allow unused imports * fix: use rpc_addr for querying ugprade plan * chore: bump Hermes to v1.8.0 * fix: update hermes-config.toml * fix: introduce cometbft version info * fix issue with upgrade-client test * fix: apply review comments * fix: adding checksums * fix: keep upgrade-client script as is * use gaia 7.1.1 on ci * code optimization --------- Co-authored-by: Rano | Ranadeep <[email protected]>
- Loading branch information
1 parent
8a266ae
commit 57f47f2
Showing
94 changed files
with
782 additions
and
729 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
.changelog/unreleased/breaking-changes/155-restructure-repo.md
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Restructure repository with the focus on `ibc-testkit` integration | ||
([#155](https://github.com/informalsystems/basecoin-rs/issues/155)) |
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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -3,27 +3,47 @@ | |
resolver = "2" | ||
|
||
members = [ | ||
"crates/app", | ||
"crates/store", | ||
"basecoin", | ||
"basecoin/app", | ||
"basecoin/modules", | ||
"basecoin/store", | ||
] | ||
|
||
[workspace.package] | ||
version = "0.1.0" | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
rust-version = "1.64" | ||
readme = "README.md" | ||
repository = "https://github.com/informalsystems/basecoin-rs" | ||
authors = ["Informal Systems <[email protected]>"] | ||
|
||
[workspace.dependencies] | ||
base64 = { version = "0.21.6", default-features = false, features = ["alloc"] } | ||
displaydoc = { version = "0.2", default-features = false } | ||
derive_more = { version = "0.99.17", default-features = false, features = ["from", "into", "display"] } | ||
ed25519 = { version = "2.1.0", default-features = false } | ||
ibc = { git = "https://github.com/cosmos/ibc-rs", rev = "4769bd7", default-features = false, features = ["serde"] } | ||
ibc-query = { git = "https://github.com/cosmos/ibc-rs", rev = "4769bd7", default-features = false } | ||
ibc-proto = { version = "0.41.0", default-features = false } | ||
ics23 = { version = "0.11", default-features = false } | ||
prost = { version = "0.12", default-features = false } | ||
serde = "1.0" | ||
serde_json = "1.0" | ||
sha2 = "0.10.2" | ||
tendermint = "0.34" | ||
tendermint-abci = "0.34" | ||
tendermint-proto = "0.34" | ||
tendermint-rpc = "0.34" | ||
tracing = "0.1.26" | ||
# external dependencies | ||
base64 = { version = "0.21.6", default-features = false, features = ["alloc"] } | ||
cosmrs = { version = "0.15.0" } | ||
displaydoc = { version = "0.2", default-features = false } | ||
derive_more = { version = "0.99.17", default-features = false, features = ["from", "into", "display"] } | ||
ed25519 = { version = "2.1.0", default-features = false } | ||
prost = { version = "0.12", default-features = false } | ||
serde = "1.0" | ||
serde_json = "1.0" | ||
sha2 = "0.10.2" | ||
tonic = "0.10" | ||
tonic-reflection = "0.10" | ||
tracing = "0.1.26" | ||
tracing-subscriber = "0.3.16" | ||
|
||
# ibc dependencies | ||
ibc = { git = "https://github.com/cosmos/ibc-rs", rev = "4769bd7", default-features = false, features = ["serde"] } | ||
ibc-query = { git = "https://github.com/cosmos/ibc-rs", rev = "4769bd7", default-features = false } | ||
ibc-proto = { version = "0.41.0", default-features = false } | ||
ics23 = { version = "0.11", default-features = false } | ||
|
||
# tendermint dependencies | ||
tendermint = { version = "0.34", default-features = false } | ||
tendermint-abci = { version = "0.34", default-features = false } | ||
tendermint-proto = { version = "0.34", default-features = false } | ||
tendermint-rpc = { version = "0.34", default-features = false } | ||
|
||
|
Oops, something went wrong.