Skip to content

Commit

Permalink
Refactor reverse proxy configuration to include additional static lib…
Browse files Browse the repository at this point in the history
…raries, libbpf-dev, and pkg-config
  • Loading branch information
arloor committed Oct 22, 2024
1 parent b7916d7 commit bd7174c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
uses: arloor/rust_musl_action@latest
with:
use_musl: false
extra_deps: cmake zlib1g-dev libelf-dev libbpf-dev
extra_deps: cmake zlib1g-dev libelf-dev libbpf-dev pkg-config make
after_install: |
find / -name libelf.a
find / -name libbpf.a
Expand Down
4 changes: 2 additions & 2 deletions rust_http_proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ pnet = { version = "0.35", optional = true }
default = ["ring"]
jemalloc = ["jemallocator"]
bpf = ["socket_filter", "cgroup_traffic"]
bpf_vendored = ["bpf", "libbpf-sys/vendored"]
bpf_static = ["bpf", "libbpf-sys/static"]
bpf_vendored = ["bpf", "socket_filter/vendored"]
bpf_static = ["bpf", "socket_filter/static"]
aws_lc_rs = ["tokio-rustls/aws-lc-rs", "hyper-rustls/aws-lc-rs"]
ring = ["tokio-rustls/ring", "hyper-rustls/ring"]

0 comments on commit bd7174c

Please sign in to comment.