Skip to content

Commit

Permalink
stream: move async-stream to dev-deps (#3366)
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Jan 2, 2021
1 parent 53707f5 commit 56272b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tokio-stream/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ time = ["tokio/time"]
futures-core = { version = "0.3.0" }
pin-project-lite = "0.2.0"
tokio = { version = "1.0", path = "../tokio", features = ["sync"] }
async-stream = "0.3"

[dev-dependencies]
tokio = { version = "1.0", path = "../tokio", features = ["full"] }
tokio-test = { path = "../tokio-test" }
async-stream = "0.3"
futures = { version = "0.3", default-features = false }

proptest = "0.10.0"
proptest = "0.10.0"

1 comment on commit 56272b2

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'sync_semaphore'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: 56272b2 Previous: 53707f5 Ratio
contended_concurrent_multi 43260 ns/iter (± 11606) 17345 ns/iter (± 8133) 2.49
contended_concurrent_single 2754 ns/iter (± 27) 1068 ns/iter (± 163) 2.58
uncontended 1636 ns/iter (± 40) 647 ns/iter (± 74) 2.53
uncontended_concurrent_multi 44238 ns/iter (± 16155) 17682 ns/iter (± 8581) 2.50
uncontended_concurrent_single 2761 ns/iter (± 31) 1108 ns/iter (± 139) 2.49

This comment was automatically generated by workflow using github-action-benchmark.

CC: @tokio-rs/maintainers

Please sign in to comment.