Skip to content

Commit

Permalink
Release 1.0.2 with patched dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
internetionals committed Mar 2, 2021
1 parent df533cf commit 058f179
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
9 changes: 4 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "claim-ip"
version = "1.0.1"
version = "1.0.2"
authors = ["Justin Ossevoort <[email protected]>"]
description = "Respond to ARP replies for a some address on a network interface"
repository = "https://github.com/internetionals/claim-ip"
Expand All @@ -10,4 +10,4 @@ license = "MIT"
edition = "2018"

[dependencies]
nix = "0.20"
nix = { git="https://github.com/internetionals/nix", branch="fix_sockaddr_ll_size" }
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM rust:slim-buster AS buildenv
FROM rust:alpine3.13 AS buildenv

COPY . /build
WORKDIR /build
RUN cargo build --release

FROM debian:buster-slim
FROM alpine:3.13

COPY --from=buildenv /build/target/release/claim-ip /usr/local/bin/

Expand Down

0 comments on commit 058f179

Please sign in to comment.