-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (39 loc) · 1.11 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
[package]
name = "RustPrinter"
version = "0.1.0"
edition = "2021"
[dependencies.reqwest]
version = "0.12.8"
features = ["json", "cookies", "multipart", "stream"]
[target.'cfg(windows)'.dependencies]
[dependencies.windows]
version = "0.58.0"
features = ["Win32_Foundation", "Win32_Graphics_Printing", "Win32_Graphics_Gdi","Win32_Security"]
[dependencies.tokio]
version = "1.40.0"
features = ["full"]
[dependencies]
# GUI
egui = "0.29"
eframe = { version = "0.29", default-features = false, features = [
"accesskit", # Make egui compatible with screen readers. NOTE: adds a lot of dependencies.
"default_fonts", # Embed the default egui fonts.
"glow", # Use the glow rendering backend. Alternative: "wgpu".
"persistence", # Enable restoring app state when restarting the app.
] }
serde = { version = "1.0.210", features = ["derive"] }
log = "0.4.22"
regex = "1.11.0"
flate2 = "1.0.34"
nom = "7.1.3"
image = "0.25.4"
chrono = "0.4.38"
dirs = "5.0"
qr2term = "0.3.3"
qrcode = "0.14.1"
serde_yaml = "0.9.34"
[build-dependencies]
bindgen = "0.70.1"
# [[bin]]
# name = "server"
# path = "src/server/mod.rs"