Skip to content
Merged
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
4 changes: 3 additions & 1 deletion cot-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ tower.workspace = true

[dev-dependencies]
async-stream.workspace = true
cot = { workspace = true, features = ["test"] }
# Specifying path directly to avoid circular dependencies on publishing cot and cot-core.
# When publishing, path dependencies are dropped, removing the cycle.
cot = { path = "../cot", features = ["test"] }
futures.workspace = true
tokio.workspace = true

Expand Down
Loading