Skip to content

Commit

Permalink
fix: remained from ibc restructure
Browse files Browse the repository at this point in the history
  • Loading branch information
Farhad-Shabani committed Nov 23, 2023
1 parent 58ac7b5 commit 16bdeda
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 12 deletions.
3 changes: 3 additions & 0 deletions ibc-clients/ics07-tendermint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ tendermint-light-client-verifier = { workspace = true, features = ["rust-crypto"
default = ["std"]
std = [
"prost/std",
"serde/std",
"ibc-client-tendermint-types/std",
"ibc-core-client/std",
"ibc-core-commitment-types/std",
Expand All @@ -60,6 +61,8 @@ schema = [
"ibc-core-host/schema",
"ibc-core-handler-types/schema",
"ibc-primitives/schema",
"serde",
"std"
]
borsh = [
"ibc-client-tendermint-types/borsh",
Expand Down
2 changes: 2 additions & 0 deletions ibc-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ schema = [
"ibc-core-host/schema",
"ibc-core-router/schema",
"ibc-core-handler/schema",
"serde",
"std"
]
parity-scale-codec = [
"ibc-core-client/parity-scale-codec",
Expand Down
2 changes: 2 additions & 0 deletions ibc-core/ics04-channel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ schema = [
"ibc-core-handler-types/schema",
"ibc-core-router/schema",
"ibc-primitives/schema",
"serde",
"std"
]
borsh = [
"ibc-core-client/borsh",
Expand Down
2 changes: 2 additions & 0 deletions ibc-core/ics04-channel/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ schema = [
"ibc-core-commitment-types/schema",
"ibc-primitives/schema",
"ibc-proto/json-schema",
"serde",
"std"
]
borsh = [
"dep:borsh",
Expand Down
3 changes: 3 additions & 0 deletions ibc-core/ics24-host/cosmos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ std = [
"displaydoc/std",
"prost/std",
"serde/std",
"sha2/std",
"subtle-encoding/std",
"ibc-core-client-types/std",
"ibc-core-client-context/std",
Expand Down Expand Up @@ -88,6 +89,8 @@ schema = [
"ibc-core-handler-types/schema",
"ibc-primitives/schema",
"ibc-proto/json-schema",
"serde",
"std"
]
borsh = [
"dep:borsh",
Expand Down
2 changes: 2 additions & 0 deletions ibc-core/ics25-handler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ schema = [
"ibc-core-host/schema",
"ibc-core-router/schema",
"ibc-core-handler-types/schema",
"serde",
"std"
]
parity-scale-codec = [
"ibc-core-client/parity-scale-codec",
Expand Down
2 changes: 2 additions & 0 deletions ibc-core/ics26-routing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ schema = [
"ibc-core-host-types/schema",
"ibc-core-router-types/schema",
"ibc-primitives/schema",
"serde",
"std"
]
parity-scale-codec = [
"ibc-core-channel-types/parity-scale-codec",
Expand Down
22 changes: 11 additions & 11 deletions ibc-data-types/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,25 @@ providing a clear and modular path for easy navigation and usage:
### Core

| <div style="width:300px">Specification</div> | Crate |
| ------------------------------------------- | ------ |
| ICS-02: Client Semantics | [ibc-core-client-types](./../ibc-core/ics02-client/types) |
| ICS-03: Connection Semantics | [ibc-core-connection-types](./../ibc-core/ics03-connection/types) |
| ICS-04: Channel and Packet Semantics | [ibc-core-channel-types](./../ibc-core/ics04-channel/types) |
| ICS-24: Host Requirements | [ibc-core-host-types](./../ibc-core/ics24-host/types) |
| ICS-25: Handler Interface | [ibc-core-handler-types](./../ibc-core/ics25-handler/types) |
| ICS-26: Routing Module | [ibc-core-routing-types](./../ibc-core/ics26-routing/types) |
| -------------------------------------------- | ------ |
| ICS-02: Client Semantics | [ibc-core-client-types](./../ibc-core/ics02-client/types) |
| ICS-03: Connection Semantics | [ibc-core-connection-types](./../ibc-core/ics03-connection/types) |
| ICS-04: Channel and Packet Semantics | [ibc-core-channel-types](./../ibc-core/ics04-channel/types) |
| ICS-24: Host Requirements | [ibc-core-host-types](./../ibc-core/ics24-host/types) |
| ICS-25: Handler Interface | [ibc-core-handler-types](./../ibc-core/ics25-handler/types) |
| ICS-26: Routing Module | [ibc-core-routing-types](./../ibc-core/ics26-routing/types) |

### Clients

| <div style="width:300px">Specification</div> | Crate |
| ------------------------------------------- | ------ |
| ICS-07: Tendermint Client | [ibc-client-tendermint-types](./../ibc-clients/ics07-tendermint/types) |
| -------------------------------------------- | ------ |
| ICS-07: Tendermint Client | [ibc-client-tendermint-types](./../ibc-clients/ics07-tendermint/types) |

### Apps

| <div style="width:300px">Specification</div> | Crate |
| ------------------------------------------- | ------ |
| ICS-20: Fungible Token Transfer | [ibc-app-transfer-types](./../ibc-apps/ics20-transfer/types) |
| -------------------------------------------- | ------ |
| ICS-20: Fungible Token Transfer | [ibc-app-transfer-types](./../ibc-apps/ics20-transfer/types) |

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion ibc-primitives/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# `ibc-primitives`
# IBC Primitives

This library furnishes essential types, traits, and utilities universally utilized in the
implementation of diverse IBC modules, encompassing core functionalities,
Expand Down

0 comments on commit 16bdeda

Please sign in to comment.