forked from awwaiid/ghostwriter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 762 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 762 Bytes
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
[package]
name = "ghostwriter"
version = "0.4.0"
edition = "2021"
[dependencies]
tokio = { version = "1.28", features = ["full"] }
ureq = { version = "3.0", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
base64 = "0.22"
image = "0.25.5"
byteorder = "1.4"
clap = { version = "4.0", features = ["derive"] }
evdev = "0.13"
resvg = "0.45"
dotenv = "0.15"
imageproc = "0.25.0"
rust-embed = { version = "8.5.0", features = ["include-exclude", "compression"] }
env_logger = "0.11.6"
log = "0.4.22"
figment = { version = "0.10", features = ["toml", "env"] }
toml = "0.8"
[dev-dependencies]
clippy = "0.0.302"
[lib]
name = "ghostwriter"
path = "src/lib.rs"
[[bin]]
name = "ghostwriter"
path = "src/main.rs"