-
Notifications
You must be signed in to change notification settings - Fork 0
/
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 = "neko_server"
version = "1.0.3"
edition = "2021"
[[bin]]
name = "neko_server"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Async
tokio = { version = "1", features = ["full"] }
tokio-util = "0.7"
# Webserver
warp = "0.3"
# Interact with Redis Database
redis = { version = "0.22", features = ["tokio-comp", "connection-manager"] }
# Manipulate Images
image = "0.24"
# Logging
log = "0.4"
env_logger = "0.9"
chrono = "0.4"
# Command line arguments parsing
clap = { version = "4.0", features = ["derive"] }
# Graceful shutdown
signal-hook = "0.3.*"
# Caching
lazy_static = "1.4.*"
[dev-dependencies]
criterion = { version = "0.4", features = ["html_reports"] }
# Build dependencies optimised for release
[profile.dev.package."*"]
opt-level = 3