chore: inherit authors from workspace.package in per-crate Cargo.tomls#64
Merged
Conversation
Replaces 26 occurrences of `authors = ["Warp Team <dev@warp.dev>"]` in per-crate Cargo.tomls with `authors.workspace = true`. The root Cargo.toml's [workspace.package] already declares `authors = ["CastCodes Maintainers"]`, so the inherited value is correct for the fork's identity. Mechanical sweep; cargo check --workspace --all-targets clean. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR standardizes crate metadata by replacing hardcoded legacy Warp author entries with workspace-inherited authors, aligning per-crate manifests with the CastCodes workspace package metadata.
Changes:
- Replaced
authors = ["Warp Team <dev@warp.dev>"]withauthors.workspace = trueacross 26 crate manifests. - Confirmed the workspace-level author value is defined in root
Cargo.toml. - No functional Rust code changes.
Reviewed changes
Copilot reviewed 26 out of 26 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
crates/watcher/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/warpui_extras/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/warp_util/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/warp_terminal/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/warp_ripgrep/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/warp_js/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/warp_files/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/warp_core/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/warp_completer/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/virtual_fs/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/syntax_tree/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/sum_tree/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/string-offset/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/simple_logger/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/repo_metadata/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/remote_server/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/natural_language_detection/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/markdown_parser/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/lsp/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/languages/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/ipc/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/input_classifier/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/graphql/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/fuzzy_match/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/firebase/Cargo.toml |
Inherits package authors from workspace metadata. |
crates/editor/Cargo.toml |
Inherits package authors from workspace metadata. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
BunsDev
added a commit
that referenced
this pull request
May 19, 2026
Last per-crate Cargo.toml hardcoding `authors = ["CastCodes Maintainers"]` directly (PR #64 caught the 26 \`Warp Team\` ones but skipped this file since it already used the correct value). Now uses `authors.workspace = true`, matching every other workspace member. Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Mechanical sweep: 26 per-crate Cargo.tomls had
authors = ["Warp Team <dev@warp.dev>"]hardcoded. Replaced withauthors.workspace = true, which inherits the workspace valueauthors = ["CastCodes Maintainers"]already declared in root[workspace.package].What's left untouched
authors = ["CastCodes Maintainers"]directly (no change needed)Val Alexander <val@viewdue.ai>)authors.workspace = trueTest plan
cargo check --workspace --all-targets— clean, 0 errorsWarp Team <dev@warp.dev>author lines remain in tracked crate Cargo.tomls🤖 Generated with Claude Code