Skip to content

Commit

Permalink
chore: omit version from ebpf library till it's pusblished
Browse files Browse the repository at this point in the history
  • Loading branch information
metaclips committed Nov 20, 2024
1 parent 5700509 commit 213dd05
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ jobs:
done
done
- name: Check Cargo.toml To Ensure That All 3rd Party Crates Have Specified Versions
- name: Check Cargo.toml To Ensure That All 3rd Party Crates.io Published Crates Have Specified Versions
run: |
set -ex
cargo install [email protected]
Expand All @@ -269,6 +269,11 @@ jobs:
for ((i=0; i<$dependencies_keys_len; i++)); do
crate_name=$(jq -r ".[$i]" <<< $dependencies_keys)
if [[ `jq -r ".\"$crate_name\".git" <<< $dependencies` != null ]]; then
continue
fi
version=$(jq -r ".\"$crate_name\".version" <<< $dependencies || jq -r ".\"$crate_name\"" <<< $dependencies)
if [[ $version =~ $regex ]]; then
Expand Down
2 changes: 1 addition & 1 deletion implementations/rust/ockam/ockam_transport_tcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ cfg-if = "1.0.0"
log = "0.4.21"
minicbor = { version = "0.25.1", default-features = false, features = ["derive"] }
ockam_core = { path = "../ockam_core", version = "^0.120.0" }
ockam_ebpf = { git = "https://github.com/build-trust/ockam-ebpf.git", version = "0.2.0", optional = true }
ockam_ebpf = { git = "https://github.com/build-trust/ockam-ebpf.git", optional = true }
ockam_macros = { path = "../ockam_macros", version = "^0.35.0" }
ockam_node = { path = "../ockam_node", version = "^0.132.0" }
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.97.0" }
Expand Down

0 comments on commit 213dd05

Please sign in to comment.