-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
48 lines (37 loc) · 1.32 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
[package]
name = "egui_skia"
version = "0.4.0"
edition = "2021"
description = "egui_skia is a skia integration for the egui ui library. Render egui within a skia application or render skia in a egui application."
license = "MIT"
homepage = "https://github.com/lucasmerlin/egui_skia"
repository = "https://github.com/lucasmerlin/egui_skia"
keywords = ["skia", "egui", "skia-safe", "gui"]
categories = ["gui"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
winit = ["dep:egui-winit"]
cpu_fix = []
gl = ["skia-safe/gl"]
vulkan = ["skia-safe/vulkan", "skulpin"]
metal = ["skia-safe/metal"]
[profile.dev]
opt-level = 3
[dependencies]
egui = ">=0.20"
skia-safe = { version = ">= 0.53", features = [] }
egui-winit = { version = ">=0.20", optional = true, default-features = false }
skulpin = { version = ">=0.14.1", features = [], optional = true}
[dev-dependencies]
softbuffer = { git = "https://github.com/john01dav/softbuffer" }
egui_demo_lib = ">=0.20"
raw-window-handle = "0.5"
foreign-types-shared = "0.1.1"
sdl2 = { version = "0.35.2", features = ["raw-window-handle"] }
gl = "0.14.0"
egui-sdl2-event = { version = "0.4.0", package = "egui-skia-sdl2-event" }
[target.'cfg(target_os = "macos")'.dev-dependencies]
metal = "0.24"
cocoa = "0.24"
core-graphics-types = "0.1"
objc = "0.2"