-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (58 loc) · 1.81 KB
/
Copy pathCargo.toml
File metadata and controls
66 lines (58 loc) · 1.81 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "khonsu"
authors = ["Theo M. Bulut <vertexclique@gmail.com>"]
description = "Khonsu: Software Transactional Memory in Rust for Apache Arrow"
version = "0.1.0"
edition = "2024"
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/psila-ai/khonsu"
homepage = "https://github.com/psila-ai/khonsu"
documentation = "https://docs.rs/khonsu"
keywords = ["stm", "transactional-memory", "concurrency", "transaction", "memory"]
categories = ["concurrency", "data-structures", "algorithms"]
build = "build.rs"
exclude = [
"/art",
"/tests",
"/target",
"Makefile",
".*",
"*.log",
"*.bak",
"*.orig"
]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
log = "0.4"
ahash = "0.8"
arrow = { version = "55", default-features = false, features = ["ipc"] }
thiserror = "2"
futures = { version = "0.3", features = ["executor"] }
parking_lot = "0.12"
serde = { version = "1.0", features = ["derive"] }
rocksdb = { version = "0.23", optional = true, features = ["multi-threaded-cf"] }
bincode = { version = "1.3", optional = true }
tonic = { version = "0.13", optional = true }
prost = { version = "0.13", optional = true }
tokio = { version = "1.28", optional = true, features = ["rt-multi-thread", "macros", "sync", "time"] }
[features]
default = ["distributed"]
distributed = ["omnipaxos", "rocksdb", "crossbeam-channel", "bincode", "tonic", "prost", "tokio"]
[dependencies.omnipaxos]
git = "https://github.com/haraldng/omnipaxos.git"
optional = true
features = ["serde"]
[dependencies.crossbeam-channel]
version = "0.5"
optional = true
[build-dependencies]
tonic-build = "0.13"
prost-build = "0.13"
[dev-dependencies]
rand = "0.9.1"
tempfile = "3.19.1"
[package.metadata."docs.rs"]
all-features = true
rustdoc-args = ["--cfg", "docsrs", "--default-theme", "ayu"]