-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (29 loc) · 858 Bytes
/
Copy pathCargo.toml
File metadata and controls
37 lines (29 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "hel-rs"
version = "1.1.1"
edition = "2024"
authors = ["Bieliaiev Vladyslav <vladbpython@gmail.com>"]
description = "High-performance unified sync+async MPMC/SPSC channel"
license = "MIT"
repository = "https://github.com/vladbpython/hel"
readme = "README.md"
keywords = ["channel", "mpmc", "async", "tokio", "spsc"]
categories = ["concurrency", "asynchronous"]
[dependencies]
atomic-waker = "1"
futures = "0.3.32"
num_cpus = "1.17.0"
parking_lot = "0.12"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
[dev-dependencies]
flume = "0.12"
criterion = { version = "0.8.2", features = ["async_tokio","html_reports"] }
crossbeam-channel = "0.5.15"
tokio = { version ="1.49.0", features = ["full"]}
tokio-util = { version = "0.7.18"}
[[bench]]
name = "trade_bench"
harness = false
path = "benches/trade_bench.rs"
[lib]
name = "hel"