-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (20 loc) · 636 Bytes
/
Cargo.toml
File metadata and controls
23 lines (20 loc) · 636 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "enum2egui"
version = "0.34.1"
authors = ["Matthew Berger <[email protected]>"]
description = """
enum2egui is a rust derive macro that creates a set of egui ui databindings from arbitrary data structures.
"""
homepage = "https://github.com/matthewjberger/enum2egui"
repository = "https://github.com/matthewjberger/enum2egui"
keywords = ["egui"]
license = "MIT"
edition = "2024"
[dependencies]
egui = "0.34.1"
enum2egui-derive = { path = "enum2egui-derive", version = "0.34.1" }
hashbrown = { version = "^0.16.0", optional = true }
[workspace]
members = ["demo"]
[features]
hashbrown = ["dep:hashbrown"]