aboutsummaryrefslogtreecommitdiff
path: root/crates/safelog/Cargo.toml
Commit message (Collapse)AuthorAgeFilesLines
...
* upgrade to latest serial_testNick Mathewson2023-01-201-1/+1
|
* Bump the minor version of every crate.Nick Mathewson2022-11-301-1/+1
| | | | | We made this job easy this time around: by incrementing our MSRV, we have forced ourselves to do at least a minor bump everywhere.
* safelog: Make MaybeRedacted<T> opaque.Nick Mathewson2022-11-281-0/+2
|
* bump rust-version to 1.60 in every crate.Nick Mathewson2022-11-101-1/+1
|
* 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-241-0/+3
|
* 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.
* Upgrade serial_test dev-dependency to 0.7.0Nick Mathewson2022-06-071-1/+1
|
* 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.)
* Implement a safe-logging facility.Nick Mathewson2022-05-061-0/+26
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.