-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (27 loc) · 833 Bytes
/
Cargo.toml
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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
edition = "2021"
license = "MIT"
homepage = "https://github.com/JackKelly/light-speed-io"
repository = "https://github.com/JackKelly/light-speed-io"
readme = "README.md"
authors=["Jack Kelly <jack@openclimatefix.org>"]
[workspace.dependencies]
anyhow = "1.0.83"
bytes = "1.6.0"
criterion = { version = "0.5.1", features = ["html_reports", "async_tokio"] }
crossbeam-deque = "0.8.5"
crossbeam-channel = "0.5.12"
io-uring = "0.6.4"
libc = "0.2.153" # Used for filesystem flags
nix = { version = "0.28.0", features = ["fs"] }
object_store = "0.10.1"
snafu = "0.8.2"
tokio = { version = "1.37.0", features = ["rt-multi-thread"]}
url = "2.5.0"
tempfile = "3.10"
rand = "0.8"
[profile.bench]
debug = true # Enable debuginfo when profiling with cargo flamegraph.