From 625daee360756e9331fda79cc1c53afeb3184144 Mon Sep 17 00:00:00 2001 From: Ranadeep Biswas Date: Wed, 24 Apr 2024 21:20:05 +0200 Subject: [PATCH 1/3] enable cargo feature check --- .github/workflows/rust.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/rust.yaml b/.github/workflows/rust.yaml index a653aabbc..8e2a0a008 100644 --- a/.github/workflows/rust.yaml +++ b/.github/workflows/rust.yaml @@ -35,7 +35,6 @@ env: jobs: check-features: - if: ${{ github.event_name != 'pull_request' }} name: Check features runs-on: ubuntu-latest timeout-minutes: 60 From c7d37fe7ac60ecd56fee4a43d5a95f487bc4e6ff Mon Sep 17 00:00:00 2001 From: Ranadeep Biswas Date: Wed, 24 Apr 2024 21:20:22 +0200 Subject: [PATCH 2/3] fix no default compile --- ibc-apps/ics721-nft-transfer/types/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ibc-apps/ics721-nft-transfer/types/Cargo.toml b/ibc-apps/ics721-nft-transfer/types/Cargo.toml index 9deb1a361..d8942ed32 100644 --- a/ibc-apps/ics721-nft-transfer/types/Cargo.toml +++ b/ibc-apps/ics721-nft-transfer/types/Cargo.toml @@ -20,7 +20,7 @@ all-features = true [dependencies] # external dependencies borsh = { workspace = true, optional = true } -base64 = { workspace = true } +base64 = { workspace = true, features = ["alloc"] } derive_more = { workspace = true } displaydoc = { workspace = true } http = "1.0.0" From 43b811315389bfde4d936b413acf0edad8b33070 Mon Sep 17 00:00:00 2001 From: Ranadeep Biswas Date: Wed, 24 Apr 2024 21:20:29 +0200 Subject: [PATCH 3/3] nit --- ibc-apps/ics721-nft-transfer/types/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ibc-apps/ics721-nft-transfer/types/Cargo.toml b/ibc-apps/ics721-nft-transfer/types/Cargo.toml index d8942ed32..3b5189b92 100644 --- a/ibc-apps/ics721-nft-transfer/types/Cargo.toml +++ b/ibc-apps/ics721-nft-transfer/types/Cargo.toml @@ -23,8 +23,8 @@ borsh = { workspace = true, optional = true } base64 = { workspace = true, features = ["alloc"] } derive_more = { workspace = true } displaydoc = { workspace = true } -http = "1.0.0" -mime = "0.3.17" +http = { version = "1.0.0" } +mime = { version = "0.3.17" } schemars = { workspace = true, optional = true } serde = { workspace = true, optional = true } serde_json = { workspace = true }