forked from mila411/pilgrimage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
65 lines (57 loc) · 1.23 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 = "pilgrimage"
version = "0.13.2"
edition = "2024"
authors = ["Kenny Miller Song"]
description = "A Kafka-like message broker in Rust"
readme = "README.md"
repository = "https://github.com/mila411/rust-kafka-like"
license = "MIT"
keywords = ["kafka", "message", "broker", "rust"]
categories = ["rust-patterns"]
[lib]
path = "src/lib.rs"
crate-type = ["rlib"]
[[bin]]
name = "pilgrimage"
path = "src/bin/pilgrimage.rs"
[[bin]]
name = "web"
path = "src/main.rs"
[dependencies]
clap = "3.2.0"
ctrlc = "3.4.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
log = "0.4"
simplelog = "0.9"
aes-gcm = "0.10.3"
rand = "0.8.5"
jsonwebtoken = "8.1.1"
tempfile = "3.2"
flate2 = "1.0.35"
actix-web = "4"
tokio = { version = "1", features = ["full"] }
prometheus = "0.13"
lazy_static = "1.4"
uuid = { version = "1.0", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
tokio-amqp = "2.0.0"
futures-util = "0.3"
lapin = "2.5.0"
[dev-dependencies]
env_logger = "0.10"
criterion = "0.3"
tempfile = "3.2"
assert_cmd = "2"
predicates = "3"
actix-rt = "2.5"
actix-test = "0.1.5"
[[bench]]
name = "benchmark"
harness = false
[profile.bench]
opt-level = 3
[profile.release]
codegen-units = 1
lto = true