about summary refs log tree commit diff
path: root/src/tools/generate-copyright/Cargo.toml
AgeCommit message (Collapse)AuthorLines
2025-09-02Revert introduction of `[workspace.dependencies]`.Nicholas Nethercote-1/+1
This was done in #145740 and #145947. It is causing problems for people using r-a on anything that uses the rustc-dev rustup package, e.g. Miri, clippy. This repository has lots of submodules and subtrees and various different projects are carved out of pieces of it. It seems like `[workspace.dependencies]` will just be more trouble than it's worth.
2025-08-28Add `serde_json` to `[workspace.dependencies]`.Nicholas Nethercote-1/+1
2025-07-27bump cargo_metadataklensy-1/+1
2025-05-24Update `askama` version to `0.14.0` in `generate-copyright` toolGuillaume Gomez-1/+1
2025-04-06Update rinja version in `generate-copyright`Guillaume Gomez-1/+1
2024-08-06Update to rinja 0.3Jonathan Pallant-1/+1
2024-08-06generate-copyright: Render Node with rinja too.Jonathan Pallant-2/+0
2024-08-06generate-copyright: use rinja to format the outputJonathan Pallant-2/+4
I can't find a way to derive rinja::Template for Node - I think because it is a recursive type. So I rendered it manually using html_escape.
2024-08-06generate-copyright: use cargo-metadataJonathan Pallant-0/+1
2024-08-06Update generate-copyrightJonathan Pallant-0/+3
This tool now scans for cargo dependencies and includes any important looking license files. We do this because cargo package metadata is not sufficient - the Apache-2.0 license says you have to include any NOTICE file, for example. And authors != copyright holders (cargo has the former, we must include the latter).
2022-11-15initial prototype of the tool to generate copyright noticesPietro Albini-0/+11