-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathCargo.toml
34 lines (28 loc) · 890 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
[package]
name = "egui_suspense"
version = "0.7.0"
edition = "2021"
authors = ["Lucas Meurer"]
description = "Automatically show loading and error uis for egui"
keywords = ["egui", "ui"]
repository = "https://github.com/lucasmerlin/hello_egui/tree/main/crates/egui_suspense"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
egui_inbox.workspace = true
egui.workspace = true
hello_egui_utils.workspace = true
[features]
async = ["hello_egui_utils/async"]
tokio = ["hello_egui_utils/tokio"]
[[example]]
name = "async"
required-features = ["async", "tokio"]
[dev-dependencies]
eframe = { workspace = true, default-features = true }
rand.workspace = true
reqwest = { version = "0.12.7", features = ["json"] }
tokio = { workspace = true, features = ["full"] }
futures.workspace = true
[lints]
workspace = true