generated from emilk/eframe_template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (36 loc) · 1.15 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
44
45
46
[package]
name = "warboss_waaghit_package"
version = "0.1.0"
authors = ["Jacob Williams <[email protected]>"]
edition = "2018"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib", "rlib"]
name = "warboss_waaghit_lib"
path = "src/lib.rs"
[[bin]]
name = "WarbossWaaghit"
path = "src/main.rs"
[dependencies]
eframe = "0.11.0" # Gives us egui, epi and web+native backends
rand = "0.8.0"
serde = { version = "1", features = ["derive"], optional = true }
walkdir = "2"
glob = "0.3.0"
dirs = "3.0.1"
directories = "3.0.1"
wfd = "0.1.7"
enum-iterator = "0.6.0"
chrono = "0.4"
[features]
default = ["persistence"]
http = ["eframe/http"] # Enable if you want to do http requests
persistence = ["eframe/persistence", "serde"] # Enable if you want to persist app state on shutdown
[profile.release]
opt-level = 2 # fast and small wasm
[patch.crates-io]
# If you want to use the bleeding edge version of `egui`:
# eframe = { git = "https://github.com/emilk/egui", branch = "master" }
# If you fork https://github.com/emilk/egui you can test with:
# eframe = { path = "../egui/eframe" }