Publish under your own crate metadata

The generated crate’s [package] block can now carry your own identity instead of Fern’s template metadata. Set packageIdentity in generators.yml to control the crate name, description, license, repository, homepage, authors, and keywords. A name override renames the matching Cargo.lock entry in the same pass, so cargo build --locked still resolves.

generators.yml
1config:
2 packageIdentity:
3 name: contoso-cli
4 description: The official Contoso CLI
5 license: MIT
6 repository: https://github.com/contoso/cli