forked from clay-ui-rs/clay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (33 loc) · 921 Bytes
/
Cargo.toml
File metadata and controls
39 lines (33 loc) · 921 Bytes
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
[package]
name = "clay-layout"
version = "0.5.0"
edition = "2021"
description = "Rust bindings for Clay, a UI layout library written in C."
keywords = ["clay", "ui", "layout", "bindings", "no_std"]
repository = "https://github.com/clay-ui-rs/clay"
readme = "README.md"
license-file = "LICENSE.md"
exclude = ["scripts/*", ".vscode/*", ".github/*", ".cargo/*"]
[build-dependencies]
cc = "1.0"
ureq = "2"
[features]
default = ["std"]
raylib-renderer = ["raylib"]
skia-renderer = ["skia-safe"]
std = []
wasm = []
debug = []
[dependencies]
skia-safe = { version = "0.86.0", features = ["gl"], optional = true }
raylib = { version = "5.5.0", optional = true }
[dev-dependencies]
winit = "0.30"
wgpu = "24.0"
pollster = "0.4"
bytemuck = { version = "1.23", features = [ "derive" ] }
glyphon = "0.8.0"
[[example]]
name = "raylib_renderer"
path = "examples/raylib_renderer.rs"
required-features = ["raylib-renderer", "std"]