Skip to content

Commit 23a3041

Browse files
committed
ci: fix
1 parent b2c9da2 commit 23a3041

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

.github/workflows/check_crate.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,9 @@ jobs:
164164
- name: Check Cargo.toml To Ensure That All 3rd Party Crates Have Specified Versions
165165
run: |
166166
set -ex
167+
cargo install [email protected]
167168
168-
regex="^[\^|=]*[0-9]+(\.[0-9]+)*(\.[0-9]+)*$"
169+
regex="^[\^|=]*[0-9]+(\.[0-9]+)*(\.[0-9]+)*"
169170
170171
for crate in $(find implementations/rust/ockam -name Cargo.toml); do
171172
@@ -185,7 +186,7 @@ jobs:
185186
echo "crate_name: $crate_name"
186187
echo "version: $version"
187188
else
188-
echo "No version found for $crate_name $version"
189+
echo "No version found for $crate_name $version in crate $crate"
189190
exit 1
190191
fi
191192
done

implementations/rust/ockam/ockam_api/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ indexmap = "2.2.6"
156156
mockall = "0.12"
157157
multimap = "0.10.0"
158158
ockam_macros = { path = "../ockam_macros", features = ["std"] }
159-
ockam_transport_core = { path = "../ockam_transport_core" }
159+
ockam_transport_core = { path = "../ockam_transport_core", version = "0.86.0" }
160160
ockam_transport_tcp = { path = "../ockam_transport_tcp", default-features = false }
161161
once_cell = { version = "1", default-features = false }
162162
opentelemetry_sdk = { version = "0.23.0", features = ["logs", "metrics", "trace", "rt-tokio", "testing"], default-features = false }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

implementations/rust/ockam/ockam_rust_elixir_nifs/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ rust-crypto = ["ockam_vault/rust-crypto"]
3737
hex = { version = "0.4", default-features = false }
3838
lazy_static = "1.5.0"
3939
minicbor = { version = "0.24.1", features = ["alloc", "derive"] }
40-
ockam_core = { path = "../ockam_core", default-features = false, features = ["std"] }
41-
ockam_identity = { path = "../ockam_identity", default-features = false, features = ["std", "software_vault"] }
42-
ockam_vault = { path = "../ockam_vault", default-features = false, features = ["std", "storage"] }
43-
ockam_vault_aws = { path = "../ockam_vault_aws" }
40+
ockam_core = { path = "../ockam_core", default-features = false, features = ["std"], version = "^0.112.0" }
41+
ockam_identity = { path = "../ockam_identity", default-features = false, features = ["std", "software_vault"], version = "^0.116.0" }
42+
ockam_vault = { path = "../ockam_vault", default-features = false, features = ["std", "storage"], version = "^0.114.0" }
43+
ockam_vault_aws = { path = "../ockam_vault_aws", version = "^0.40.0" }
4444
# Enable credentials-sso feature in ockam_vault_aws for use on sso environments (like dev machines)
4545
rustler = "0.33.0"
4646
time = "0.3.36"

0 commit comments

Comments
 (0)