This repository has been archived by the owner on Sep 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
49 lines (44 loc) · 1.44 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
47
48
49
[package]
name = "etk"
version = "0.2.0"
edition = "2021"
description = "Egui's toolkit"
license = "MIT"
[lib]
crate_type = ["lib", "cdylib"]
[features]
# default = ["passthrough"]
passthrough = ["dep:egui_window_glfw_passthrough"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tracing = { version = "*" }
tracing-subscriber = { version = "*" }
egui_backend = { path = "crates/egui_backend" }
egui = { version = "0.21.0" }
console_error_panic_hook = "0.1.6"
tracing-wasm = "*"
egui_window_winit = { version = "*", path = "crates/egui_window_winit" }
egui_render_wgpu = { version = "*", path = "crates/egui_render_wgpu" }
egui_window_glfw_passthrough = { version = "*", path = "crates/egui_window_glfw_passthrough", optional = true }
[target.'cfg(target_os = "android")'.dependencies]
tracing-android = { version = "*" }
[package.metadata.android.sdk]
min_sdk_version = 29
target_sdk_version = 33
[workspace]
members = [
"crates/egui_backend",
"crates/egui_window_glfw_passthrough",
"crates/egui_window_winit",
"crates/egui_render_wgpu",
"crates/egui_window_sdl2",
"crates/egui_render_glow",
"crates/egui_render_three_d",
# "crates/egui_render_rend3", # re-enable after rend3 upgrades to wgpu 0.16.
"examples/glfw_glow",
"examples/glfw_wgpu",
"examples/glfw_wgpu_simple",
# "examples/glfw_rend3",
"examples/sdl2_glow",
"examples/winit_wgpu",
]