summaryrefslogtreecommitdiff
path: root/crates/safelog
Commit message (Collapse)AuthorAgeFilesLines
* Update patch-versions on crates without API changes.Nick Mathewson2022-09-011-1/+1
| | | | | | | Since our last round of releases, these crates have had either trivial changes, or changes that did not affect their APIs. Therefore we are bumping their versions, but not changing which versions of them other crates depend on.
* Upgrade serial_test in preparation for release.Nick Mathewson2022-08-301-1/+1
|
* enable doc_auto_cfg feature on every crate when documenting for docs.rstrinity-1686a2022-08-242-0/+4
|
* Manually bump the patch version on safelog.Nick Mathewson2022-08-011-1/+1
| | | | | The changes on safelog do not affect its APIs or behavior, so there is no need to adjust any dependencies.
* Upgrade to latest phf, serde_with, serial_test.Nick Mathewson2022-07-191-1/+1
|
* Increment versions of crates with trivial changes only.Nick Mathewson2022-06-241-1/+1
| | | | | | "Trivial" here includes stuff like cargo reformatting, comment edits, error message string changes, and clippy warning changes. Crates that depend on these do not need to increment.
* Run maint/add_warning crates/*/src/{lib,main}.rsIan Jackson2022-06-231-0/+3
| | | | Update all lint blocks
* Style fixes to safelog errors.Nick Mathewson2022-06-221-3/+3
|
* Upgrade serial_test dev-dependency to 0.7.0Nick Mathewson2022-06-071-1/+1
|
* lints: Add let_unit_value allow to all cratesIan Jackson2022-05-311-0/+1
| | | | | From running add_warning, with manual picking of the right hunks/lines.
* lints: Add lint block delimiters to every crateIan Jackson2022-05-311-0/+2
| | | | | | This was the result of: maint/add_warning crates/*/src/{lib,main}.rs and then manually curating the results.
* Lexically sort Cargo.toml dependenciesOrhun Parmaksız2022-05-281-1/+1
| | | | | | Utilize cargo-sort: https://github.com/DevinR528/cargo-sort Signed-off-by: Orhun Parmaksız <[email protected]>
* Change safelog version to 0.1.0.Nick Mathewson2022-05-061-1/+1
| | | | | (This is okay because we haven't published it yet, or any crate that uses it.)
* Update README.md files (automated).Nick Mathewson2022-05-061-1/+70
|
* Punctuation fix.eta2022-05-061-1/+1
|
* Implement a safe-logging facility.Nick Mathewson2022-05-065-0/+656
This is a rough first-cut of an API that I think might help us with keeping limited categories of sensitive information out of our logs. I'll refine it based on experiences with using it.