-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (36 loc) · 896 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
38
39
40
41
42
43
44
45
[package]
name = "qust"
version = "0.1.0"
authors = ["odd <[email protected]>"]
edition = "2018"
description = "Qust is a fast and straightforward job queue implemented by Rust."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
env_logger = "0.8.2"
interaction = "0.3.3"
log = { version ="0.4.11", features = ["max_level_debug", "release_max_level_info"]}
mio = { version = "0.7.7", features = ["net", "os-poll"] }
signal-hook = "0.3.3"
uuid = { version = "0.8.2", features = ["v4"] }
[dev-dependencies]
criterion = "0.3.3"
[[bin]]
bench = false
path = "src/app/app.rs"
name = "qust"
[[bin]]
bench = false
path = "src/app/cli.rs"
name = "qust_cli"
[lib]
bench = false
path = "src/lib.rs"
[[bench]]
name = "server"
harness = false
[[bench]]
name = "algo"
harness = false
[[test]]
name = "server"
path = "tests/server.rs"