-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hello 👋 [This advisory](GHSA-x4mq-m75f-mx8m) has been bothering me since a while. The origin of it is [`acid_io`](https://github.com/dataphract/acid_io/blob/v0.1.0/Cargo.toml#L28), where the [issue has been fixed](dataphract/acid_io#21), but no release has been publish 😞 (since 3 years!) So, after reading this [discussion/issue](rust-lang/rust#48331), I decided to replace `acid_io` for [`core2`](https://crates.io/crates/core2) (which seems quite used, even if the last release was 2 years ago). The changes was trivial as `acid_io` and `core2::io` have the same API as `std::io`. But, while trying to test those changes, the CI failed (which was also the case [`last week`](https://github.com/dequbed/rsasl/actions/runs/8870496836)). So I started to fix the CI, and made changes to make the CI pass. I also added a `dependabot.yaml`, PR will be created monthly to update the dependencies in the `Cargo.toml` and `ci.yml`. I formatted the `README.md` and `Cargo.toml`. I had to bump MSRV to 1.65. I bumped the dependencies to their latest versions, and pushed the `Cargo.lock`, see [`why`](https://doc.rust-lang.org/cargo/faq.html#why-have-cargolock-in-version-control). And I ran `cargo clippy --fix` and `cargo fmt`, with not much modification from myself. I just finished to write the description of this PR and realize that someone was working on #36, oops
- Loading branch information
Showing
67 changed files
with
2,336 additions
and
381 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
1000 | ||
ABNF | ||
authcid | ||
authid | ||
authzid | ||
bufs | ||
dtolnay | ||
GSSAPI | ||
lifecycle | ||
linkme | ||
Mechname | ||
miri | ||
OAUTHBEARER | ||
repr | ||
rsasl | ||
rustc | ||
sasl | ||
saslprep | ||
SECURID | ||
stringprep | ||
testutils | ||
thiserror | ||
XOAUTH2 | ||
ZST | ||
struct | ||
TLS | ||
CHANGELOG | ||
md | ||
README | ||
queryable | ||
config | ||
base64 | ||
storable | ||
pluggable | ||
SSO | ||
Kerberos | ||
OpenID | ||
unprotect | ||
unprotects | ||
XMPP | ||
SMTP | ||
IMAP | ||
gsasl | ||
steps | ||
bugfixes | ||
OAuth | ||
structs | ||
impl | ||
IRCv3 | ||
semver | ||
KERBEROS_V5 | ||
IdP | ||
provide_any | ||
NTLM | ||
DIGEST_MD5 | ||
FFI | ||
CRAM_MD5 | ||
changelog | ||
implementor | ||
implementors | ||
IPsec | ||
flavours | ||
OPENID20 | ||
dtolnay's | ||
SAML20 | ||
msrv | ||
behaviour | ||
behaviours | ||
unencrypted | ||
IANA | ||
enum | ||
unprotects |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
dev_comments = false | ||
skip_readme = false | ||
|
||
[hunspell] | ||
lang = "en_US" | ||
search_dirs = ["."] | ||
skip_os_lookups = false | ||
use_builtin = true | ||
tokenization_splitchars = "\",;:.!?#(){}[]|/_-‒'`&@§¶…" | ||
extra_dictionaries = ["spell.dic"] | ||
|
||
[hunspell.quirks] | ||
transform_regex = [] | ||
allow_concatenation = false | ||
allow_dashes = false | ||
allow_emojis = true | ||
|
||
[nlprules] | ||
|
||
[reflow] | ||
max_line_length = 80 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: cargo | ||
directory: "/" | ||
schedule: | ||
interval: monthly | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: monthly |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
target/ | ||
Cargo.lock | ||
tags | ||
/.idea/ | ||
TODO.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"cSpell.customDictionaries": { | ||
"project-words": { | ||
"name": "words", | ||
"path": "${workspaceRoot}/.config/spell.dic", | ||
"description": "Words used", | ||
"addWords": true | ||
}, | ||
"custom": true, | ||
"internal-terms": false | ||
} | ||
} |
Oops, something went wrong.