forked from insolvent-capital/WorkTable
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
36 lines (31 loc) · 1.44 KB
/
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
32
33
34
35
36
[workspace]
members = ["codegen", "examples", "performance_measurement", "performance_measurement/codegen"]
[package]
name = "worktable"
version = "0.4.1"
edition = "2021"
authors = ["Handy-caT"]
license = "MIT"
repository = "https://github.com/pathscale/WorkTable"
description = "WorkTable is in-memory storage"
[features]
perf_measurements = ["dep:performance_measurement", "dep:performance_measurement_codegen"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
eyre = "0.6.12"
derive_more = { version = "1.0.0", features = ["from", "error", "display", "into"] }
tokio = { version = "1", features = ["full"] }
rkyv = { version = "0.8.9", features = ["uuid-1"] }
lockfree = { version = "0.5.1" }
worktable_codegen = { path = "codegen", version = "0.4.1" }
scc = "2.1.16"
futures = "0.3.30"
uuid = { version = "1.10.0", features = ["v4"] }
data_bucket = { git = "https://github.com/pathscale/DataBucket", branch = "main" }
#data_bucket = { path = "../DataBucket", version = "0.1.1" }
performance_measurement_codegen = { path = "performance_measurement/codegen", version = "0.1.0", optional = true }
performance_measurement = { path = "performance_measurement", version = "0.1.0", optional = true }
indexset = { version = "0.10.3", features = ["concurrent", "multimap"] }
# indexset = { path = "../indexset", version = "0.10.3", features = ["concurrent", "multimap"] }
[dev-dependencies]
async-std = "1.13.0"