-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
37 lines (29 loc) · 856 Bytes
/
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
[workspace]
package.version = "0.6.0"
package.edition = "2021"
package.license = "MIT OR Apache-2.0"
[package]
name = "egui-probe"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Trait and derive macro for exposing value editing in egui"
[features]
derive = ["dep:egui-probe-proc"]
[dependencies]
egui-probe-proc = { path = "proc", version = "=0.6.0", optional = true }
egui = { version = "0.29" }
smallvec1 = { package = "smallvec", version = "1", features = [
"const_generics",
], optional = true }
smallvec2 = { package = "smallvec", version = "2.0.0-alpha.7", optional = true }
hashbrown = { version = "0.15", optional = true }
[dev-dependencies]
eframe = "0.29"
edict = "1.0.0-rc6"
[[example]]
name = "demo"
required-features = ["derive"]
[[example]]
name = "edict"
required-features = ["derive"]