Skip to content
Merged
Show file tree
Hide file tree
Changes from 47 commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
ae1b9c3
wip
rafal-ch Jul 1, 2025
5e4f099
test(mechanics): debugging
cong-or Jul 3, 2025
4c32844
test(mechanics): debugging
cong-or Jul 3, 2025
a6d818c
Merge remote-tracking branch 'origin/main' into rafal/410/http_reques…
rafal-ch Jul 4, 2025
94905f9
Wip
rafal-ch Jul 4, 2025
7d800d9
Send request
rafal-ch Jul 4, 2025
d424c98
wip: decoupled request and response
rafal-ch Jul 7, 2025
584af27
Use proper req id
rafal-ch Jul 7, 2025
4004eb0
Introduce `ErrorCode`
rafal-ch Jul 9, 2025
e5a99cc
Remove stray file
rafal-ch Jul 9, 2025
612282c
Request id is now `u64`
rafal-ch Jul 9, 2025
59ae21a
Scaffolding for HTTP connection
rafal-ch Jul 9, 2025
1bb5aa2
Sending over HTTP(s)
rafal-ch Jul 9, 2025
fd1a45a
Native HTTP sending
rafal-ch Jul 9, 2025
d57e82a
Cleanup HTTP connection part
rafal-ch Jul 10, 2025
6152925
Support HTTPs requests
rafal-ch Jul 10, 2025
33fceb7
Switch to async
rafal-ch Jul 10, 2025
dc040f4
Cleanup
rafal-ch Jul 10, 2025
1d62d33
Remove superfluous `RequestSendingError`
rafal-ch Jul 11, 2025
1304f41
Fix unwrap
rafal-ch Jul 11, 2025
5580e1d
Cleanup
rafal-ch Jul 11, 2025
7a6d4f1
Init RUSTLS crypto provider lazily
rafal-ch Jul 11, 2025
77992a4
Init more RUSTLS machinery lazily
rafal-ch Jul 11, 2025
445f712
Remove stray todo
rafal-ch Jul 11, 2025
e013e1c
Case insensitive scheme check
rafal-ch Jul 11, 2025
3247447
Startup cleanup
rafal-ch Jul 11, 2025
a503184
Stub
rafal-ch Jul 11, 2025
6ae0817
Clean-up unused dependencies
rafal-ch Jul 11, 2025
d4a8031
Cleanup
rafal-ch Jul 11, 2025
fe9dbbc
Cleanup
rafal-ch Jul 11, 2025
d42f886
Cleanup
rafal-ch Jul 11, 2025
6467abc
Add todo
rafal-ch Jul 11, 2025
87b2208
Update comment
rafal-ch Jul 11, 2025
c74782f
Revert accidental changes
rafal-ch Jul 11, 2025
bc96b94
Merge remote-tracking branch 'origin/main' into rafal/410/http_reques…
rafal-ch Jul 15, 2025
20a575c
Update spellcheck dictionary
rafal-ch Jul 15, 2025
c68d043
bump hermes-ipfs
Jul 15, 2025
1f27df3
Merge remote-tracking branch 'origin/main' into arthur/ring_bump/rafa…
rafal-ch Jul 29, 2025
0eebaa9
Bump wasmtime
rafal-ch Jul 29, 2025
853ff06
Remove stray test placeholder
rafal-ch Jul 29, 2025
13de82c
Allow fork
rafal-ch Jul 29, 2025
a315841
Updates
rafal-ch Jul 30, 2025
49ba7bd
CI version fix
rafal-ch Jul 30, 2025
292c6f2
Temporarily point to the `main` branch of catalyst-libs
rafal-ch Jul 30, 2025
30a90df
Create .ipfs repo directory if it does not exist
rafal-ch Jul 30, 2025
6125fa5
Fix docs build
rafal-ch Jul 31, 2025
74c00e5
Bump `hermes-ipfs`
rafal-ch Jul 31, 2025
17ad1c6
fix(hermes): Bumping every dependency to latest we can, and add back …
stevenj Jul 31, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .config/dictionaries/project.dic
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ pubk
pubkey
pubspec
pwrite
rustls
qpsg
quic
rapidoc
Expand Down
4 changes: 2 additions & 2 deletions Earthfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.4.5 AS mdlint-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.4.5 AS cspell-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.4.9 AS mdlint-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.4.9 AS cspell-ci

# cspell: words livedocs sitedocs

Expand Down
2 changes: 1 addition & 1 deletion docs/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.4.5 AS docs-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.4.9 AS docs-ci

IMPORT .. AS repo
IMPORT ../hermes AS hermes
Expand Down
1 change: 0 additions & 1 deletion hermes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ exit = "deny"
get_unwrap = "deny"
index_refutable_slice = "deny"
indexing_slicing = "deny"
match_on_vec_items = "deny"
match_wild_err_arm = "deny"
missing_panics_doc = "deny"
panic = "deny"
Expand Down
2 changes: 1 addition & 1 deletion hermes/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.4.5 AS rust-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.4.9 AS rust-ci
# Use when debugging cat-ci locally.
# IMPORT ../../catalyst-ci/earthly/rust AS rust-ci

Expand Down
8 changes: 4 additions & 4 deletions hermes/bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ hdf5 = { package = "hdf5-metno", version = "0.10.1", features = [ "static", "blo
blosc-src = { version = "0.3.4", features = ["lz4", "zlib", "zstd"] }

# fixes the dependency of libp2p of hermes-ipfs, because latest version uses MSRV higher than ours.
yamux = "=0.13.3"
yamux = "=0.13.5"

criterion = {version = "0.6.0", optional=true}

cardano-chain-follower = { path = "../crates/cardano-chain-follower", version = "0.0.1" }
hermes-ipfs = { version = "0.0.3", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "v0.0.3" }
hermes-ipfs = { version = "0.0.5", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "hermes-ipfs/v0.0.5" }

wasmtime = { version = "33.0.0", default-features = false, features = ["runtime", "cranelift", "component-model"] }
wasmtime = { version = "35.0.0", default-features = false, features = ["runtime", "cranelift", "component-model"] }
rusty_ulid = "2.0.0"
anyhow = "1.0.89"
hex-literal = "1.0.0"
Expand Down Expand Up @@ -104,7 +104,7 @@ build-info-build = "0.0.40"
[dev-dependencies]
serial_test = { version = "3.1.1", features = ["file_locks"] }
# An override with the "wat" feature added.
wasmtime = { version = "33.0.0", default-features = false, features = ["runtime", "cranelift", "component-model", "wat"] }
wasmtime = { version = "35.0.0", default-features = false, features = ["runtime", "cranelift", "component-model", "wat"] }
httpmock = "0.7.0"

[package.metadata.cargo-machete]
Expand Down
2 changes: 1 addition & 1 deletion hermes/bin/src/event/queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ fn targeted_module_event_execution(target_app_name: &ApplicationName, event: &He
}
}
},
};
}
}

/// Executes provided Hermes event filtering by target app.
Expand Down
2 changes: 1 addition & 1 deletion hermes/bin/src/hdf5/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ impl File {
/// Convert arbitrary error to `std::io::Error`.
#[allow(clippy::needless_pass_by_value)]
fn map_to_io_error(err: impl ToString) -> std::io::Error {
std::io::Error::new(std::io::ErrorKind::Other, err.to_string())
std::io::Error::other(err.to_string())
}

impl std::io::Read for File {
Expand Down
4 changes: 4 additions & 0 deletions hermes/bin/src/ipfs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ pub(crate) static HERMES_IPFS: OnceCell<HermesIpfsNode> = OnceCell::new();
/// Returns errors if IPFS node fails to start.
pub fn bootstrap(base_dir: &Path, default_bootstrap: bool) -> anyhow::Result<()> {
let ipfs_data_path = base_dir.join("ipfs");
if !ipfs_data_path.exists() {
tracing::info!("creating IPFS repo directory: {}", ipfs_data_path.display());
std::fs::create_dir_all(&ipfs_data_path)?;
}
let ipfs_node = HermesIpfsNode::init(
IpfsBuilder::new()
.with_default()
Expand Down
6 changes: 6 additions & 0 deletions hermes/bin/src/runtime_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

use std::sync::Arc;

use wasmtime::component::HasData;

use crate::{app::ApplicationName, vfs::Vfs, wasm::module::ModuleId};

/// Hermes Runtime Context. This is passed to the WASM runtime.
Expand All @@ -23,6 +25,10 @@ pub(crate) struct HermesRuntimeContext {
vfs: Arc<Vfs>,
}

impl HasData for HermesRuntimeContext {
type Data<'a> = &'a mut Self;
}

impl HermesRuntimeContext {
/// Creates a new instance of the `Context`.
pub(crate) fn new(
Expand Down
2 changes: 1 addition & 1 deletion hermes/bin/src/runtime_extensions/hermes/cron/queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ impl CronEventQueue {
for OnCronEvent { tag, last } in cron_events {
v.push((tag.clone(), *last));
}
};
}
v
})
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ pub fn spawn() -> TokioTaskHandle {
}

/// Represents a connection to an HTTP or HTTPS server.
#[allow(clippy::large_enum_variant)]
enum Connection {
/// Represents a plain HTTP connection.
Http(TcpStream),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ pub(crate) fn prepare(db_ptr: *mut sqlite3, sql: &str) -> Result<*mut sqlite3_st
sql_cstring.as_ptr(),
n_byte,
0,
&mut stmt_ptr,
&raw mut stmt_ptr,
std::ptr::null_mut(),
)
};
Expand Down
2 changes: 1 addition & 1 deletion hermes/bin/src/runtime_extensions/hermes/sqlite/core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ pub(super) fn open(
let rc = unsafe {
sqlite3_open_v2(
db_path.to_string_lossy().as_ptr().cast(),
&mut db_ptr,
&raw mut db_ptr,
flags,
std::ptr::null(),
)
Expand Down
2 changes: 1 addition & 1 deletion hermes/bin/src/wasm/module.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ impl Module {
linker
.allow_shadowing(true)
.define_unknown_imports_as_traps(&wasm_module)?;
bindings::Hermes::add_to_linker(
bindings::Hermes::add_to_linker::<_, HermesRuntimeContext>(
&mut linker,
&LinkOptions::default(),
|state: &mut HermesRuntimeContext| state,
Expand Down
1 change: 0 additions & 1 deletion hermes/crates/cardano-chain-follower/src/follow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,6 @@ mod task {
}
Err(_) => {
drop(response_tx.send(Err(crate::Error::SetReadPointer)));
continue;
}
}
}
Expand Down
1 change: 0 additions & 1 deletion hermes/crates/cardano-chain-follower/testbed/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ exit = "deny"
get_unwrap = "deny"
index_refutable_slice = "deny"
indexing_slicing = "deny"
match_on_vec_items = "deny"
match_wild_err_arm = "deny"
missing_panics_doc = "deny"
panic = "deny"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.85"
channel = "1.88"
profile = "default"
3 changes: 3 additions & 0 deletions hermes/deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ allow-git = [
"https://github.com/txpipe/kes",
"https://github.com/txpipe/curve25519-dalek",
"https://github.com/input-output-hk/mithril",
# Maintained fork of an archived crates-io version.
"https://github.com/dariusc93/rust-ipfs",
]

[licenses]
Expand All @@ -81,6 +83,7 @@ allow = [
"Zlib",
"MIT-0",
"CDLA-Permissive-2.0",
"OpenSSL",
]
exceptions = [
#{ allow = ["Zlib"], crate = "tinyvec" },
Expand Down
2 changes: 1 addition & 1 deletion hermes/rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.85"
channel = "1.88"
profile = "default"
2 changes: 1 addition & 1 deletion wasm/examples/c/cardano_age/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.4.5 AS wasm-c-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.4.9 AS wasm-c-ci
# Use when debugging cat-ci locally.
# IMPORT ../../../../catalyst-ci/earthly/wasm/c AS wasm-c-ci

Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/c/next_century/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.4.5 AS wasm-c-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.4.9 AS wasm-c-ci
# Use when debugging cat-ci locally.
# IMPORT ../../../../catalyst-ci/earthly/wasm/c AS wasm-c-ci

Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/rust/cardano_age/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.4.5 AS rust-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.4.9 AS rust-ci
# Use when debugging cat-ci locally.
# IMPORT ../../../catalyst-ci/earthly/rust AS rust-ci

Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/rust/next_century/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.4.5 AS rust-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.4.9 AS rust-ci
# Use when debugging cat-ci locally.
# IMPORT ../../../catalyst-ci/earthly/rust AS rust-ci

Expand Down
2 changes: 1 addition & 1 deletion wasm/integration-test/cardano/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.4.5 AS rust-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.4.9 AS rust-ci
# Use when debugging cat-ci locally.
# IMPORT ../../catalyst-ci/earthly/rust AS rust-ci

Expand Down
2 changes: 1 addition & 1 deletion wasm/integration-test/cardano/rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.85"
channel = "1.88"
targets = ["wasm32-wasip2"]
2 changes: 1 addition & 1 deletion wasm/integration-test/clocks/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.4.5 AS wasm-c-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.4.9 AS wasm-c-ci
# Use when debugging cat-ci locally.
# IMPORT ../../../catalyst-ci/earthly/wasm/c AS wasm-c-ci

Expand Down
2 changes: 1 addition & 1 deletion wasm/integration-test/cron/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.4.5 AS wasm-c-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.4.9 AS wasm-c-ci
# Use when debugging cat-ci locally.
# IMPORT ../../../catalyst-ci/earthly/wasm/c AS wasm-c-ci

Expand Down
2 changes: 1 addition & 1 deletion wasm/integration-test/crypto/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.4.5 AS wasm-c-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.4.9 AS wasm-c-ci
# Use when debugging cat-ci locally.
# IMPORT ../../../catalyst-ci/earthly/wasm/c AS wasm-c-ci

Expand Down
2 changes: 1 addition & 1 deletion wasm/integration-test/hashing/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.4.5 AS wasm-c-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.4.9 AS wasm-c-ci
# Use when debugging cat-ci locally.
# IMPORT ../../../catalyst-ci/earthly/wasm/c AS wasm-c-ci

Expand Down
2 changes: 1 addition & 1 deletion wasm/integration-test/http_reply/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.4.5 AS rust-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.4.9 AS rust-ci
# Use when debugging cat-ci locally.
# IMPORT ../../catalyst-ci/earthly/rust AS rust-ci

Expand Down
2 changes: 1 addition & 1 deletion wasm/integration-test/http_reply/rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.85"
channel = "1.88"
targets = ["wasm32-wasip2"]
2 changes: 1 addition & 1 deletion wasm/integration-test/ipfs/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.4.5 AS rust-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.4.9 AS rust-ci
# Use when debugging cat-ci locally.
# IMPORT ../../catalyst-ci/earthly/rust AS rust-ci

Expand Down
2 changes: 1 addition & 1 deletion wasm/integration-test/ipfs/rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.85"
channel = "1.88"
targets = ["wasm32-wasip2"]
2 changes: 1 addition & 1 deletion wasm/integration-test/localtime/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.4.5 AS wasm-c-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.4.9 AS wasm-c-ci
# Use when debugging cat-ci locally.
# IMPORT ../../../catalyst-ci/earthly/wasm/c AS wasm-c-ci

Expand Down
2 changes: 1 addition & 1 deletion wasm/integration-test/logger/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.4.5 AS wasm-c-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.4.9 AS wasm-c-ci
# Use when debugging cat-ci locally.
# IMPORT ../../../catalyst-ci/earthly/wasm/c AS wasm-c-ci

Expand Down
2 changes: 1 addition & 1 deletion wasm/integration-test/smoke-test/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.4.5 AS wasm-c-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.4.9 AS wasm-c-ci
# Use when debugging cat-ci locally.
# IMPORT ../../../catalyst-ci/earthly/wasm/c AS wasm-c-ci

Expand Down
2 changes: 1 addition & 1 deletion wasm/integration-test/sqlite/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.4.5 AS rust-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.4.9 AS rust-ci
# Use when debugging cat-ci locally.
# IMPORT ../../catalyst-ci/earthly/rust AS rust-ci

Expand Down
2 changes: 1 addition & 1 deletion wasm/integration-test/sqlite/rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.85"
channel = "1.88"
targets = ["wasm32-wasip2"]
2 changes: 1 addition & 1 deletion wasm/integration-test/wasi-filesystem/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.4.5 AS rust-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.4.9 AS rust-ci
# Use when debugging cat-ci locally.
# IMPORT ../../catalyst-ci/earthly/rust AS rust-ci

Expand Down
2 changes: 1 addition & 1 deletion wasm/stub-module/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.4.5 AS wasm-c-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.4.9 AS wasm-c-ci
# Use when debugging cat-ci locally.
# IMPORT ../../../catalyst-ci/earthly/wasm/c AS wasm-c-ci

Expand Down
2 changes: 1 addition & 1 deletion wasm/wasi/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.4.5 AS rust-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.4.9 AS rust-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/go:v3.4.8 AS go-ci

# Use when debugging cat-ci locally.
Expand Down
Loading