Skip to content

Commit 4a3d570

Browse files
committed
community hardening
1 parent ebcdc17 commit 4a3d570

File tree

20 files changed

+564
-177
lines changed

20 files changed

+564
-177
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,9 @@ jobs:
181181
- name: Build CLI
182182
if: matrix.target != 'aarch64-unknown-linux-gnu'
183183
run: cargo build --release --target ${{ matrix.target }} --bin openfang
184+
- name: Ad-hoc codesign CLI binary (macOS)
185+
if: runner.os == 'macOS'
186+
run: codesign --force --sign - target/${{ matrix.target }}/release/openfang
184187
- name: Package (Unix)
185188
if: matrix.archive == 'tar.gz'
186189
run: |

Cargo.lock

Lines changed: 30 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ members = [
1818
]
1919

2020
[workspace.package]
21-
version = "0.3.24"
21+
version = "0.3.25"
2222
edition = "2021"
2323
license = "Apache-2.0 OR MIT"
2424
repository = "https://github.com/RightNow-AI/openfang"
@@ -119,6 +119,9 @@ colored = "3"
119119
aes-gcm = "0.10"
120120
argon2 = "0.5"
121121

122+
# HTML entity decoding
123+
html-escape = "0.2"
124+
122125
# Lightweight regex
123126
regex-lite = "0.1"
124127

0 commit comments

Comments
 (0)