-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
65 lines (54 loc) · 1.09 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 = "liner_broker"
version = "1.0.9"
edition = "2021"
keywords = ["broker", "serverless", "redis", "network"]
categories = ["concurrency", "asynchronous"]
exclude = [
"docs/*",
".vscode/*",
"cpp/*",
"include/*",
"python/*",
"target/*",
]
description = "Redis based message serverless broker."
readme = "README.md"
repository = "https://github.com/Tyill/liner"
authors = ["Alexander Medvedev [email protected]"]
license = "MIT"
[lib]
crate-type = ["cdylib", "rlib"]
#[[bin]]
#name = "test"
#path = "test/test.rs"
[[bin]]
name = "throughput_10k"
path = "benchmark/throughput_10k.rs"
[[bin]]
name = "one_to_one"
path = "rust/one_to_one.rs"
[[bin]]
name = "one_to_one_for_many"
path = "rust/one_to_one_for_many.rs"
[[bin]]
name = "one_to_many"
path = "rust/one_to_many.rs"
[[bin]]
name = "many_to_many"
path = "rust/many_to_many.rs"
[[bin]]
name = "producer_consumer"
path = "rust/producer_consumer.rs"
[dependencies]
redis = "0.26.1"
rayon = "1.10"
zstd = "0.13"
libc = "0.2"
nohash-hasher = "0.2.0"
[features]
liner_debug = []
[profile.release]
panic = "abort"
codegen-units = 1
lto = "fat"