-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (37 loc) · 1014 Bytes
/
Copy pathCargo.toml
File metadata and controls
41 lines (37 loc) · 1014 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
36
37
38
39
40
41
[package]
name = "logix-workbench"
version = "1.1.0"
edition = "2021"
authors = ["Chris Mangin"]
[[bin]]
name = "L5XEditor"
path = "src/main.rs"
[dependencies]
axum = { version = "0.7", features = ["multipart"] }
tokio = { version = "1", features = ["full"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["cors"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
roxmltree = "0.19"
xmltree = "0.10"
rust-embed = "8"
sha1 = { version = "0.10", features = ["std"] }
base64 = "0.22"
similar = "2"
anyhow = "1"
hex = "0.4"
open = "5"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.58", features = [
"Win32_Foundation",
"Win32_System_Com",
"Win32_UI_Shell",
"Win32_UI_Shell_Common",
] }
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = true
panic = "abort"