Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,4 @@ tracing-subscriber = "0.3.19"
triomphe = "0.1.14"
url = "2.5.4"
bytes = "1.10.1"
Copy link

Copilot AI Jun 21, 2025

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.

Suggested change
bytes = "1.10.1"
bytes = "1.10.1"

Copilot uses AI. Check for mistakes.
ascii = "1.1.0"
4 changes: 2 additions & 2 deletions crates/bytes-str/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ serde = ["dep:serde"]

[dependencies]
bytes = { workspace = true }
rkyv = { version = "0.8", optional = true }
serde = { version = "1", optional = true }
rkyv = { workspace = true, optional = true }
serde = { workspace = true, optional = true }
14 changes: 14 additions & 0 deletions crates/cow-replace/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[package]
authors = { workspace = true }
description = "String replace with Cow"
edition = { workspace = true }
include = ["Cargo.toml", "src/**/*.rs"]
license = { workspace = true }
name = "cow-replace"
repository = { workspace = true }
version = "0.1.1"

[features]
Copy link

Copilot AI Jun 21, 2025

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.

Suggested change
[features]

Copilot uses AI. Check for mistakes.

[dependencies]
ascii = { workspace = true }
Loading
Loading