-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (33 loc) · 888 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
32
33
34
35
36
37
[package]
name = "rpq"
version = "0.2.0"
edition = "2021"
authors = ["Justin Timperio"]
description = "A high performance embeddable double priority queue with complex priority ordering guarantees"
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/JustinTimperio/rpq"
keywords = [
"priority-queue",
"double-priority-queue",
"priority-queue-library",
"rpq",
]
[lib]
name = "rpq"
path = "src/lib.rs"
[dependencies]
bincode = "1.3.3"
chrono = { version = "0.4.38", features = ["serde"] }
rand = "0.8.4"
redb = "2.1.1"
serde = { version = "1.0.208", features = ["derive"] }
serde_with = { version = "3.9.0", features = ["chrono"] }
thiserror = "1.0.63"
tokio = { version = "1.10.0", features = ["full"] }
uuid = { version = "1.10.0", features = ["v4"] }
[profile.test]
inherits = "release"
[workspace]
members = ["graphs"]
name = "rpq-graphs"