-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
65 lines (57 loc) · 1.7 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
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
[package]
name = "laminarmq"
description = "A scalable, distributed message queue powered by a segmented, partitioned, replicated and immutable log."
repository = "https://github.com/arindas/laminarmq"
license = "MIT"
categories = ["web-programming"]
keywords = ["message-queue", "distributed-systems", "segmented-log", "io-uring"]
exclude = [".github/", "assets/"]
version = "0.0.5-rc2"
edition = "2021"
rust-version = "1.62"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
glommio = "0.8.0"
crc32fast = "1.3.2"
bincode = "1"
async-trait = "0.1.57"
futures-lite = "1.12.0"
byteorder = "1.4.3"
serde = { version = "1.0.144", features = ["derive"] }
hyper = { version = "0.14.20", features = ["server", "http1", "http2"] }
tokio = { version = "1.21.2", features = ["rt", "rt-multi-thread", "sync", "net", "fs"] }
tracing = "0.1.37"
bytes = "1.3.0"
route-recognizer = "0.3.1"
futures-core = "0.3.25"
futures-channel = "0.3"
futures-util = "0.3.25"
async-stream = "0.3.3"
tracing-subscriber = "0.3.16"
ctrlc-async = "3.2.2"
tower-service = "0.3.2"
num = "0.4.0"
futures-time = "3.0.0"
async-io = "1.13.0"
generational-cache = "0.2.0"
[lib]
name = "laminarmq"
bench = false
[[bin]]
name = "laminarmq-client-cli"
path = "./src/bin/laminarmq_client_cli.rs"
bench = false
[[bin]]
name = "laminarmq-server"
path = "./src/bin/laminarmq_server.rs"
bench = false
[dev-dependencies]
rlimit = "0.10.1"
criterion = { version = "0.5", features = ["html_reports", "async_futures", "async_tokio"] }
pprof = { version = "0.12", features = ["flamegraph", "criterion"] }
[[bench]]
name = "commit_log_append"
harness = false
[[bench]]
name = "segmented_log_read_stream"
harness = false