Skip to content

Commit

Permalink
Update crates and add Audit (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
frisoft authored Dec 21, 2023
1 parent 3dc07b9 commit e72c16c
Show file tree
Hide file tree
Showing 15 changed files with 558 additions and 426 deletions.
2 changes: 2 additions & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
watch_file flake.nix
use flake .
15 changes: 8 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,20 @@ name: CI

on:
push:
branches: '*'
branches: "*"

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Run audit
run: cargo install cargo-audit && cargo audit
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
**/*.rs.bk
/.env
.vscode

.direnv
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v1.0.5

- Replace unmaintained crate dotenv with dotenvy.
- Upgrade crates.
- Add Audit.

## v1.0.4

- Improve error messages.
Expand Down
Loading

0 comments on commit e72c16c

Please sign in to comment.