-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 1.04 KB
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
[workspace]
members = ["codegen", "tools/create-data-file", "tools/dump-data-file"]
[package]
name = "data_bucket"
version = "0.3.15"
edition = "2021"
authors = ["Handy-caT"]
license = "MIT"
repository = "https://github.com/pathscale/DataBucket"
description = "DataBucket is container for WorkTable's data"
[dependencies]
data_bucket_derive = { path = "codegen", version = "=0.3.15" }
eyre = "0.6.12"
derive_more = { version = "1.0.0", features = ["from", "error", "display", "into"] }
rkyv = { version = "0.8.9", features = ["uuid-1"] }
lockfree = "0.5.1"
uuid = { version = "1.11.0", features = ["v4"] }
psc-nanoid = { version = "3.1.1", features = ["rkyv", "packed"] }
ordered-float = "5.0.0"
indexset = { version = "=0.16.0", features = ["concurrent", "cdc", "multimap"] }
# indexset = { package = "wt-indexset", path = "../indexset", version = "0.12.10", features = ["concurrent", "cdc", "multimap"] }
# indexset = { package = "wt-indexset", version = "0.12.12", features = ["concurrent", "cdc", "multimap"] }
tokio = { version = "1", features = ["full"] }