Compare commits
5 Commits
5aefc84f40
...
016f796299
Author | SHA1 | Date |
---|---|---|
Aydin Mercan | 016f796299 | |
Aydin Mercan | 997aa62588 | |
Aydin Mercan | 92814fbaef | |
Aydin Mercan | eb24ca0579 | |
Aydin Mercan | a8dcc537b4 |
|
@ -1,4 +1,8 @@
|
||||||
[output]
|
[output]
|
||||||
quiet = false
|
quiet = false
|
||||||
deny = ["warnings"]
|
deny = [
|
||||||
informational_warnings = ["unmaintained", "unsound"]
|
"unmaintained",
|
||||||
|
"unsound",
|
||||||
|
"warnings",
|
||||||
|
"yanked",
|
||||||
|
]
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
name: Audit for RUSTSEC advisories
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: main
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * *'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
audit:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- uses: actions-rs/audit-check@v1
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
/target
|
/target
|
||||||
/Cargo.lock
|
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
aydin@mercan.dev sk-ssh-ed25519@openssh.com AAAAGnNrLXNzaC1lZDI1NTE5QG9wZW5zc2guY29tAAAAILLr2NFDIXvtO32wLsdMaycO7jYHjd1tydv3ClA7B/yxAAAAB3NzaDpnaXQ=
|
10
README.md
10
README.md
|
@ -9,6 +9,16 @@ Use and extend BearSSL in Rust.
|
||||||
* `bearssl`: Higher level code for easier use in servers, clients, etc.
|
* `bearssl`: Higher level code for easier use in servers, clients, etc.
|
||||||
* Versions below `0.0.2` are unrelated to this crate.
|
* Versions below `0.0.2` are unrelated to this crate.
|
||||||
|
|
||||||
|
## Development
|
||||||
|
|
||||||
|
We prefer commit signing via SSH. The allowed signers are listed in `.gitsigners`.
|
||||||
|
To verify, a gitconfig entry such as the following is likely needed:
|
||||||
|
|
||||||
|
```ini
|
||||||
|
[gpg.ssh]
|
||||||
|
allowedSignersFile = .gitsigners
|
||||||
|
```
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
All crates in this repository are available under `BSD-3-Clause`.
|
All crates in this repository are available under `BSD-3-Clause`.
|
||||||
|
|
Loading…
Reference in New Issue