-
-
Notifications
You must be signed in to change notification settings - Fork 6
feat: Add cow-replace
#89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds a new crate called "cow-replace" for string replacement with Cow and aligns dependency management across related crates.
- Introduces the "cow-replace" crate with workspace inherited metadata and build settings.
- Updates dependency definitions for rkyv and serde in the "bytes-str" crate to use workspace references.
- Adds an ascii dependency version to the top-level Cargo.toml.
Reviewed Changes
Copilot reviewed 3 out of 5 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| crates/cow-replace/Cargo.toml | New crate configuration with workspace-based settings. |
| crates/bytes-str/Cargo.toml | Updates dependency declarations to reference workspace versions. |
| Cargo.toml | Adds the ascii dependency with a fixed version. |
| repository = { workspace = true } | ||
| version = "0.1.1" | ||
|
|
||
| [features] |
Copilot
AI
Jun 21, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] The [features] section is currently empty; consider removing it until features are implemented to simplify the configuration.
| [features] |
| tracing-subscriber = "0.3.19" | ||
| triomphe = "0.1.14" | ||
| url = "2.5.4" | ||
| bytes = "1.10.1" |
Copilot
AI
Jun 21, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] Ensure that the explicit ascii dependency version here is consistent with workspace-managed versions used in other crates to avoid conflicts.
| bytes = "1.10.1" | |
| bytes = "1.10.1" |
Required for swc-project/swc#10665