Skip to content

Commit

Permalink
chore: use crates.io published version of ockam_ebpf
Browse files Browse the repository at this point in the history
  • Loading branch information
metaclips authored and SanjoDeundiak committed Nov 26, 2024
1 parent a8acbe9 commit 304792a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,9 @@ jobs:
for ((i=0; i<$dependencies_keys_len; i++)); do
crate_name=$(jq -r ".[$i]" <<< $dependencies_keys)
version=$(jq -r ".\"$crate_name\".version" <<< $dependencies || jq -r ".\"$crate_name\"" <<< $dependencies)
version=$(jq -r ".\"$crate_name\".version" <<< $dependencies || jq -r ".\"$crate_name\"" <<< $dependencies)
# It is mandatory that to publish to the crates.io repository, all our dependencies must have a version specified (must have been published to crates.io)
if [[ $version =~ $regex ]]; then
echo "crate_name: $crate_name"
echo "version: $version"
Expand Down
5 changes: 3 additions & 2 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 NOTICE.md
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ This file contains attributions for any 3rd-party open source code used in this
| objc2-foundation | MIT | https://crates.io/crates/objc2-foundation |
| objc_id | MIT | https://crates.io/crates/objc_id |
| object | Apache-2.0, MIT | https://crates.io/crates/object |
| ockam_ebpf | Apache-2.0 | https://github.com/build-trust/ockam-ebpf.git |
| ockam_ebpf | Apache-2.0 | https://crates.io/crates/ockam_ebpf |
| once_cell | MIT, Apache-2.0 | https://crates.io/crates/once_cell |
| onig | MIT | https://crates.io/crates/onig |
| onig_sys | MIT | https://crates.io/crates/onig_sys |
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.4.0", optional = true }
ockam_ebpf = { version = "0.5.0", 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
2 changes: 2 additions & 0 deletions tools/nix/parts/tooling.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ _: {
parallel
which
socat
] ++ lib.optionals stdenv.isLinux [
nettools
];

BATS_LIB = "${config.packages.bats}/share/bats";
Expand Down

0 comments on commit 304792a

Please sign in to comment.