summaryrefslogtreecommitdiff
path: root/maint/fixup-features/Cargo.toml
Commit message (Collapse)AuthorAgeFilesLines
* Update toml_edit dependency to 0.23.4Nick Mathewson2025-08-261-1/+1
|
* Switch Cargo.toml files to edition 2024.Nick Mathewson2025-08-071-1/+1
| | | | | | | | | | | | | | First, run ``` git grep -l "^edition =" | xargs perl -i -pe 's/^edition *=.*/edition = "2024"/;' ``` Second, manually verify that all Cargo.toml files have changed, and nothing else has changed. Third, run cargo fmt again.
* Set MSRV to 1.85.Nick Mathewson2025-08-051-1/+1
|
* All crates: bump rust-version to 1.83.Nick Mathewson2025-05-131-1/+1
|
* Upgrade to itertools 0.14.0Nick Mathewson2025-01-061-1/+1
|
* Upgrade MSRV to 1.77Nick Mathewson2024-09-251-1/+1
| | | | This will allow us to upgrade to the latest version of rusqlite.
* Bump MSRV from 1.70 to 1.75.Wesley Aptekar-Cassels2024-09-161-1/+1
|
* Update to itertools 0.13.0Ian Jackson2024-06-251-1/+1
| | | | | | | No code changes needed. Precisely nailing-cargo -Eu upgrade --incompatible -p itertools
* fixup-features: Update to avoid deprecations in latest toml_editNick Mathewson2024-04-011-1/+1
| | | | (Also, require a version of `toml_edit` that _has_ `DocumentMut`.)
* Run "fixup-features" in preparation for next release.Nick Mathewson2024-03-281-0/+3
|
* fixup-features: Upgrade toml_edit and itertools.Nick Mathewson2024-02-261-2/+2
|
* maint/fixup-features: Remove a spurious blank line from Cargo.tomlIan Jackson2024-02-081-1/+0
| | | | maint/cargo_sort complains about this.
* maint/fixup-features: Make part of the main workspaceIan Jackson2024-02-071-2/+0
| | | | | This ties it into everything, so we run CI on it, have it in our main lockfile, and so on.
* In every crate, change rust-version to 1.70.Nick Mathewson2023-11-281-1/+1
|
* fixup-features: Add an option to not annotate.Nick Mathewson2023-05-151-0/+1
|
* fixup-features: Make a feature graph type in a submoduleNick Mathewson2023-05-151-0/+1
| | | | | I tried to use petgraph, but it was optimized for performance over usability, and the usability was beyond me.
* Increment MSRV to 1.65 in every crate.Nick Mathewson2023-04-111-1/+1
|
* New "fixup-features" tool to enforce properties in Cargo.tomlsNick Mathewson2023-03-201-0/+17
See top-level main.rs comment for an explanation. Closes #771