Skip to content

Commit

Permalink
Merge branch 'libp2p-next' into refactor/remove-redundant
Browse files Browse the repository at this point in the history
  • Loading branch information
dariusc93 committed Jul 4, 2024
2 parents bda6198 + ef7e368 commit 5734972
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 17 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Checks

on:
push:
branches: [ "libp2p-next" ]
pull_request:
branches: [ "libp2p-next" ]

env:
CARGO_TERM_COLOR: always

jobs:
check-native:
runs-on: ubuntu-latest
steps:
- name: Check (native)
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- run: cargo check

check-wasm:
runs-on: ubuntu-latest
steps:
- name: Check (native)
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
target: wasm32-unknown-unknown
- run: cargo check --target wasm32-unknown-unknown
32 changes: 16 additions & 16 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion unixfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ default = ["filetime"]

[dependencies]
libipld = "0.16"
either = { default-features = false, version = "1.8" }
either = { default-features = false, version = "1.13" }
filetime = { optional = true, version = "0.2" }
quick-protobuf = { default-features = false, features = [
"std",
Expand Down

0 comments on commit 5734972

Please sign in to comment.