Skip to content

Commit

Permalink
fix individual crates arbitrary feature deps
Browse files Browse the repository at this point in the history
  • Loading branch information
tzemanovic committed Jan 13, 2025
1 parent bfe33c3 commit 9025243
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 8 deletions.
2 changes: 1 addition & 1 deletion ibc-apps/ics20-transfer/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,4 @@ parity-scale-codec = [
"ibc-core/parity-scale-codec",
"ibc-proto/parity-scale-codec",
]
arbitrary = [ "dep:arbitrary", "ibc-core/arbitrary" ]
arbitrary = [ "dep:arbitrary", "ibc-core/arbitrary", "std" ]
7 changes: 6 additions & 1 deletion ibc-apps/ics721-nft-transfer/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,9 @@ parity-scale-codec = [
"ibc-proto/parity-scale-codec",
"ibc-app-transfer-types/parity-scale-codec",
]
arbitrary = [ "dep:arbitrary", "ibc-core/arbitrary" ]
arbitrary = [
"dep:arbitrary",
"ibc-core/arbitrary",
"ibc-app-transfer-types/arbitrary",
"std",
]
1 change: 1 addition & 0 deletions ibc-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,5 @@ arbitrary = [
"ibc-core-host/arbitrary",
"ibc-core-handler/arbitrary",
"ibc-primitives/arbitrary",
"std",
]
7 changes: 6 additions & 1 deletion ibc-core/ics02-client/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,9 @@ parity-scale-codec = [
"ibc-primitives/parity-scale-codec",
"ibc-proto/parity-scale-codec",
]
arbitrary = [ "dep:arbitrary", "ibc-primitives/arbitrary" ]
arbitrary = [
"dep:arbitrary",
"ibc-primitives/arbitrary",
"ibc-core-commitment-types/arbitrary",
"std",
]
4 changes: 3 additions & 1 deletion ibc-core/ics03-connection/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@ parity-scale-codec = [
]
arbitrary = [
"dep:arbitrary",
"ibc-core-client-types/arbitrary",
"ibc-core-commitment-types/arbitrary",
"ibc-core-host-types/arbitrary",
"ibc-primitives/arbitrary"
"ibc-primitives/arbitrary",
"std",
]
8 changes: 7 additions & 1 deletion ibc-core/ics04-channel/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,10 @@ parity-scale-codec = [
"ibc-primitives/parity-scale-codec",
"ibc-proto/parity-scale-codec",
]
arbitrary = [ "dep:arbitrary", "ibc-primitives/arbitrary" ]
arbitrary = [
"dep:arbitrary",
"ibc-core-client-types/arbitrary",
"ibc-core-host-types/arbitrary",
"ibc-primitives/arbitrary",
"std",
]
3 changes: 2 additions & 1 deletion ibc-core/ics23-commitment/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,6 @@ parity-scale-codec = [
arbitrary = [
"dep:arbitrary",
"ibc-core-host-types/arbitrary",
"ibc-primitives/arbitrary"
"ibc-primitives/arbitrary",
"std",
]
2 changes: 1 addition & 1 deletion ibc-core/ics24-host/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ parity-scale-codec = [
"dep:scale-info",
"ibc-primitives/parity-scale-codec",
]
arbitrary = [ "dep:arbitrary", "ibc-primitives/arbitrary" ]
arbitrary = [ "dep:arbitrary", "ibc-primitives/arbitrary", "std" ]
2 changes: 2 additions & 0 deletions ibc-core/ics25-handler/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@ parity-scale-codec = [
]
arbitrary = [
"dep:arbitrary",
"ibc-core-connection-types/arbitrary",
"ibc-core-channel-types/arbitrary",
"ibc-primitives/arbitrary",
"std",
]
2 changes: 1 addition & 1 deletion ibc-primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ parity-scale-codec = [
"dep:scale-info",
"ibc-proto/parity-scale-codec",
]
arbitrary = [ "dep:arbitrary" ]
arbitrary = [ "dep:arbitrary", "std" ]

0 comments on commit 9025243

Please sign in to comment.