-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
imp: further minimization of
prost
imports (#1000)
* imp: further minimizing prost imports * fix: merkle proof extraction in ics07 * chore: update Cargo.lock * chore: clean ups * chore: touch ups
- Loading branch information
1 parent
2259108
commit eafdd30
Showing
34 changed files
with
107 additions
and
217 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
.changelog/unreleased/breaking-changes/997-minimize-prost-dependency.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,5 @@ | ||
- [`ibc`] Minimize `prost` dependency by introducing `ToVec` trait | ||
- Now `prost` is only imported in `ibc-primitives` crate | ||
- Remove error variants originating from `prost` (Breaking change) | ||
- Eliminate the need for the `bytes` dependency | ||
([\#997](https://github.com/cosmos/ibc-rs/issues/997)) |
2 changes: 0 additions & 2 deletions
2
.changelog/unreleased/improvements/997-minimize-prost-dependency.md
This file was deleted.
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 |
---|---|---|
|
@@ -48,19 +48,14 @@ authors = ["Informal Systems <[email protected]>"] | |
[workspace.dependencies] | ||
# external dependencies | ||
borsh = { version = "0.10", default-features = false } | ||
bytes = { version = "1.5.0", default-features = false } | ||
displaydoc = { version = "0.2", default-features = false } | ||
derive_more = { version = "0.99.17", default-features = false, features = ["from", "into", "display", "try_into"] } | ||
num-traits = { version = "0.2.17", default-features = false } | ||
primitive-types = { version = "0.12.2", default-features = false, features = ["serde_no_std"] } | ||
prost = { version = "0.12", default-features = false } | ||
rstest = "0.18.2" | ||
schemars = { version = "0.8.15" } | ||
sha2 = { version = "0.10.8", default-features = false } | ||
serde = { version = "1.0", default-features = false } | ||
serde_json = { package = "serde-json-wasm", version = "1.0.0" , default-features = false } | ||
subtle-encoding = { version = "0.5", default-features = false } | ||
time = { version = ">=0.3.0, <0.3.31", default-features = false } | ||
|
||
# ibc dependencies | ||
ibc = { version = "0.48.1", path = "./ibc", default-features = false } | ||
|
@@ -92,7 +87,6 @@ ibc-client-tendermint-types = { version = "0.48.1", path = "./ibc-clients/ics07- | |
ibc-app-transfer-types = { version = "0.48.1", path = "./ibc-apps/ics20-transfer/types", default-features = false } | ||
|
||
ibc-proto = { version = "0.39.1", default-features = false } | ||
ics23 = { version = "0.11", default-features = false } | ||
|
||
# cosmos dependencies | ||
tendermint = { version = "0.34.0", default-features = false } | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Oops, something went wrong.