Skip to content

Commit 8ede8e5

Browse files
bkioshnrafal-ch
andauthored
chore(rust/hermes-ipfs): Use our own fork of rust-ipfs (#785)
* update rust-ipfs Signed-off-by: bkioshn <bkioshn@gmail.com> * allow git Signed-off-by: bkioshn <bkioshn@gmail.com> * Bump CI --------- Signed-off-by: bkioshn <bkioshn@gmail.com> Co-authored-by: rafal-ch <rafal.chabowski@iohk.io>
1 parent b3f60fb commit 8ede8e5

File tree

15 files changed

+22
-18
lines changed

15 files changed

+22
-18
lines changed

Earthfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.6.12 AS mdlint-ci
4-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.6.12 AS cspell-ci
5-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/python:v3.6.12 AS python-ci
6-
IMPORT github.com/input-output-hk/catalyst-ci:v3.6.12 AS cat-ci
7-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/debian:v3.6.12 AS debian
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.6.13 AS mdlint-ci
4+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.6.13 AS cspell-ci
5+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/python:v3.6.13 AS python-ci
6+
IMPORT github.com/input-output-hk/catalyst-ci:v3.6.13 AS cat-ci
7+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/debian:v3.6.13 AS debian
88

99

1010
# check-markdown : markdown check using catalyst-ci.

catalyst-python/Earthfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/python:v3.6.12 AS python-ci
4-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.6.12 AS rust-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/python:v3.6.13 AS python-ci
4+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.6.13 AS rust-ci
55

66
builder:
77
DO rust-ci+SETUP

catalyst-python/rust-ffi/Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.6.12 AS rust-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.6.13 AS rust-ci
44

55
builder:
66
DO rust-ci+SETUP

catalyst-python/rust-ffi/deny.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ allow-git = [
6969
"https://github.com/input-output-hk/catalyst_flutter_rust_bridge",
7070
# TODO: remove this when new version `0.6.2` would be published to crates.io
7171
"https://github.com/nervosnetwork/sparse-merkle-tree.git",
72+
# TODO: remove this when change from forked is merged
73+
"https://github.com/input-output-hk/rust-ipfs"
7274
]
7375

7476
[licenses]

docs/Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.6.12 AS docs-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.6.13 AS docs-ci
44

55
IMPORT .. AS repo
66

docs/src/architecture/08_concepts/signed_doc/cddl/Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cddl:v3.6.12 AS cddl-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cddl:v3.6.13 AS cddl-ci
44

55
check-cddl:
66
FROM cddl-ci+cddl-base

rust/Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.6.12 AS rust-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.6.13 AS rust-ci
44
IMPORT ../ AS repo-ci
55

66
COPY_SRC:

rust/c509-certificate/Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust::v3.6.12 AS rust-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust::v3.6.13 AS rust-ci
44

55
IMPORT .. AS rust-local
66
IMPORT ../.. AS repo

rust/catalyst-signed-doc-spec/Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.6.12 AS rust-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.6.13 AS rust-ci
44

55
# wasm32-wasip2
66
WASM_BUILD:

rust/catalyst-types/Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.6.12 AS rust-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.6.13 AS rust-ci
44

55
# wasm32-wasip2
66
WASM_BUILD:

0 commit comments

Comments
 (0)