Skip to content

Commit

Permalink
fix(ibc-app-nft-transfer): compile without default features (#1195)
Browse files Browse the repository at this point in the history
* enable cargo feature check

* fix no default compile

* nit
  • Loading branch information
rnbguy authored Apr 24, 2024
1 parent d72fb58 commit 23b26bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ env:

jobs:
check-features:
if: ${{ github.event_name != 'pull_request' }}
name: Check features
runs-on: ubuntu-latest
timeout-minutes: 60
Expand Down
6 changes: 3 additions & 3 deletions ibc-apps/ics721-nft-transfer/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ 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"
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 }
Expand Down

0 comments on commit 23b26bb

Please sign in to comment.