Skip to content

Commit

Permalink
Release 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
alexforster committed Dec 8, 2021
1 parent cca4777 commit bc70925
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pdu"
version = "1.4.1"
version = "1.4.2"
description = "Small, fast, and correct L2/L3/L4 packet parser."
readme = "README.md"
authors = ["Alex Forster <[email protected]>"]
Expand All @@ -22,7 +22,7 @@ std = []
[dev-dependencies]
base16 = { version = "~0.2" }
roxmltree = { version = "~0.14", features = ["std"] }
pcap = { version = "~0.8" }
pcap = { version = "~0.9" }

[workspace]
members = [
Expand Down
18 changes: 9 additions & 9 deletions test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ VOLUME /usr/local/src/pdu
WORKDIR /usr/local/src/pdu
SHELL ["/bin/bash", "-eu", "-o", "pipefail", "-c"]
RUN \
export DEBIAN_FRONTEND=noninteractive; \
apt-get -q update; \
apt-get -q install -y curl build-essential linux-headers-generic pkg-config binutils-dev libunwind-dev libpcap-dev tshark; \
apt-get -q clean autoclean;
export DEBIAN_FRONTEND=noninteractive; \
apt-get -q update; \
apt-get -q install -y curl build-essential linux-headers-generic pkg-config binutils-dev libunwind-dev libpcap-dev tshark; \
apt-get -q clean autoclean;
RUN \
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable; \
source $HOME/.cargo/env; \
cargo install honggfuzz;
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable; \
source $HOME/.cargo/env; \
cargo install honggfuzz;
ENTRYPOINT \
source $HOME/.cargo/env; \
cargo test --verbose
source $HOME/.cargo/env; \
cargo test --verbose
EOF

${DOCKER} run --init --rm -v "$(pwd):/usr/local/src/pdu" pdu-test

0 comments on commit bc70925

Please sign in to comment.