From 0bdc51f44b0822f0b5bf7995bf0350666a920c62 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Thu, 20 Jul 2023 11:09:46 -0400 Subject: [PATCH 1/4] Make audits run nightly --- .github/workflows/audit.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 2fdf7db..76244b2 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -4,6 +4,9 @@ on: paths: - '**/Cargo.toml' - '**/Cargo.lock' + schedule: + - cron: '0 0 * * *' + jobs: security_audit: runs-on: ubuntu-latest From 7a5c4886cc2be1444255841f4a4d28fdebebc131 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Thu, 20 Jul 2023 11:13:41 -0400 Subject: [PATCH 2/4] Add note about enabling prom metrics --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index d4c692e..c14eae1 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,9 @@ Protomask uses a [TOML](https://toml.io) configuration file. Here is a functiona # The NAT64 prefix to route to protomask Nat64Prefix = "64:ff9b::/96" +# Optionally enable prometheus metrics on a port +Prometheus = "[::]:8080" # Optional, defaults to disabled + [Pool] # All prefixes in the pool Prefixes = ["192.0.2.0/24"] From 5b04d5b72988a2a2a3a455555cbbc936683cfb5e Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Thu, 20 Jul 2023 11:15:56 -0400 Subject: [PATCH 3/4] Remove build from source info --- README.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/README.md b/README.md index c14eae1..9ba9372 100644 --- a/README.md +++ b/README.md @@ -47,14 +47,6 @@ Protomask can be installed using various methods: cargo install protomask ``` -### From source - -```bash -git clone https://github.com/ewpratten/protomask -cd protomask -cargo install --path . -``` - ## Usage ```text From 81e54537c3cb0013431a0e0ffaaa14ad01bbfe57 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Thu, 20 Jul 2023 11:16:18 -0400 Subject: [PATCH 4/4] Trigger an audit --- Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 98dfa8e..0ac84ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,6 @@ license = "GPL-3.0" keywords = [] categories = [] -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] protomask-tun = { path = "protomask-tun", version = "0.1.0" } tokio = { version = "1.29.1", features = [