-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (40 loc) · 1.06 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
[package]
name = "lcs-png-diff-server"
version = "0.1.6"
edition = "2021"
documentation = "https://github.com/jianliao/lcs-png-diff-server-rs"
homepage = "https://github.com/jianliao/lcs-png-diff-server-rs"
repository = "https://github.com/jianliao/lcs-png-diff-server-rs"
license = "Apache-2.0"
readme ="README.md"
authors = ["Jian Liao <jian.liao@gmail.com>"]
description = "PNG diff server with LCS algorithm"
keywords = [
"PNG",
"Bitmap",
"LCS"
]
exclude = [
".gitignore"
]
[features]
default = ["binary"]
binary = ["all_image_formats"]
all_image_formats = ["image/png"]
[dependencies]
axum = "0.5.5"
axum-extra = { version = "0.3.1", features = ["spa"] }
clap = { version = "3.1.18", features = ["derive"] }
http = "0.2.7"
image = { version = "0.24.2", default-features = false }
lcs-png-diff = "0.3.1"
log = "0.4.17"
reqwest = "0.11.10"
serde = "1.0.137"
serde_json = "1.0.81"
tokio = { version = "1.18.2", features = ["full"] }
tower = "0.4.12"
tower-http = { version = "0.3.3", features = ["full"] }
tracing = "0.1.34"
tracing-subscriber = "0.3.11"
uuid = "1.0.0"