Skip to content

Commit

Permalink
Disable building some unnecessary features
Browse files Browse the repository at this point in the history
  • Loading branch information
sug0 committed Dec 2, 2024
1 parent bc59742 commit dfc83a8
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 23 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,13 @@ license = "MIT"
readme = "README.md"
repository = "https://github.com/heliaxdev/ibc-middleware"

[workspace.dependencies]
dur = "0.5.3"
serde_json = "1.0"
[workspace.dependencies.dur]
version = "0.5.3"
default-features = false

[workspace.dependencies.serde_json]
version = "1.0"
default-features = false

[workspace.dependencies.borsh]
version = "1.2.0"
Expand All @@ -33,31 +37,47 @@ features = ["alloc", "derive"]
[workspace.dependencies.ibc-core-router]
git = "https://github.com/heliaxdev/cosmos-ibc-rs"
rev = "38489943c4e75206eaffeeeec6153c039c2499d1"
default-features = false
features = ["borsh", "serde"]

[workspace.dependencies.ibc-core-router-types]
git = "https://github.com/heliaxdev/cosmos-ibc-rs"
rev = "38489943c4e75206eaffeeeec6153c039c2499d1"
default-features = false
features = ["borsh", "serde"]

[workspace.dependencies.ibc-core-host-types]
git = "https://github.com/heliaxdev/cosmos-ibc-rs"
rev = "38489943c4e75206eaffeeeec6153c039c2499d1"
default-features = false
features = ["borsh", "serde"]

[workspace.dependencies.ibc-core-channel-types]
git = "https://github.com/heliaxdev/cosmos-ibc-rs"
rev = "38489943c4e75206eaffeeeec6153c039c2499d1"
default-features = false
features = ["borsh", "serde"]

[workspace.dependencies.ibc-core-channel]
git = "https://github.com/heliaxdev/cosmos-ibc-rs"
rev = "38489943c4e75206eaffeeeec6153c039c2499d1"
default-features = false
features = ["borsh", "serde"]

[workspace.dependencies.ibc-primitives]
git = "https://github.com/heliaxdev/cosmos-ibc-rs"
rev = "38489943c4e75206eaffeeeec6153c039c2499d1"
default-features = false
features = ["borsh", "serde"]

[workspace.dependencies.ibc-app-transfer-types]
git = "https://github.com/heliaxdev/cosmos-ibc-rs"
rev = "38489943c4e75206eaffeeeec6153c039c2499d1"
default-features = false
features = ["borsh", "serde"]

[workspace.dependencies.ibc-testkit]
git = "https://github.com/heliaxdev/cosmos-ibc-rs"
rev = "38489943c4e75206eaffeeeec6153c039c2499d1"
default-features = false
features = ["borsh", "serde"]

0 comments on commit dfc83a8

Please sign in to comment.