-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
executable file
·40 lines (31 loc) · 1015 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
38
[package]
name = "tools"
version = "0.0.7"
edition = "2021"
authors = ["wjz"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
eframe = {version = "0.23.0" }
egui_extras = {version = "0.23.0",features = ["chrono","all_loaders"]}
tokio = { version = "1.22", features = ["full"] }
chrono = "0.4"
tiberius={version="0.12.2",features = ["chrono","rustls","tds73",],default-features = false}
tokio-util = { version = "0.7.8", features=["compat"]}
rust_xlsxwriter = "0.51.0"
image = {version = "0.24", features = ["ico","png"]}
reqwest = { version = "0.11", features = [ "json","multipart"] }
serde_json = "1.0"
[dependencies.uuid]
version = "1.2.2"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]
[profile.release]
lto = true
strip = true
codegen-units = 1
opt-level = 3
[build-dependencies]
embed-resource = "2.4"