-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
43 lines (39 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
[package]
name = "basalt"
edition = "2021"
version = "0.21.0"
authors = ["Austin <[email protected]>"]
repository = "https://github.com/AustinJ235/basalt"
documentation = "https://docs.rs/basalt"
description = "A window/ui framework built upon vulkan."
license = "MIT"
keywords = ["vulkan", "graphics", "gui", "framework", "interface"]
categories = ["graphics","gui"]
readme = "README.md"
resolver = "2"
[dependencies]
arc-swap = "1"
curl = { version = "0.4", optional = true }
flume = "0.11"
guillotiere = "0.6"
image = { version = "0.24", optional = true }
ordered-float = "4"
parking_lot = "0.12"
raw-window-handle = "0.5"
smallvec = "1"
url = "2"
vulkano = "0.34"
vulkano-shaders = "0.34"
[dependencies.cosmic-text]
version = "0.11"
features = ["shape-run-cache"]
[dependencies.winit]
version = "0.29"
default-features = false
features = ["rwh_05", "x11", "wayland", "wayland-dlopen", "wayland-csd-adwaita"]
[features]
default = ["image_decode", "image_download"]
# Removes the #[must_use] attribute from BinStyleValidation and uses the debug method when it drops.
style_validation_debug_on_drop = []
image_decode = ["dep:image"]
image_download = ["image_decode", "dep:curl"]