-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
40 lines (34 loc) · 1.07 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
[package]
name = "weaver"
version = "0.1.0"
edition = "2021"
authors = ["will <https://github.com/willser>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Epi and web+native backends
# The dir where store in `https://docs.rs/directories-next/2.0.0/directories_next/struct.ProjectDirs.html#method.data_dir`
# Tracing this issue to change dir: `https://github.com/emilk/egui/issues/914`
eframe = {version = "0.18.0" ,features=["default","persistence"]}
# Deserialize/Serialize
serde = { version = "1", features = ["derive"]}
# Create request id
rand = "0.8"
# Load font from system
#font-loader = "0.11.0"
font-kit = "0.11.0"
# Create file dialog
# TODO Replace this with a egui window
rfd = "0.8"
# Sned http request,TODO re
reqwest = {version="0.11.10",features=["native-tls","blocking","multipart"]}
# Promise
poll-promise = "0.1.0"
# System config
locale_config ="0.3.0"
# Parse from command-line
clap = {version = "3.1.15",features =["derive"]}
shellwords = "1.1.0"
# Load image
image="*"
[profile.release]
opt-level = "z"