-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
45 lines (36 loc) · 1.05 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
[workspace.package]
version = "0.7.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/zakarumych/egui-probe"
rust-version = "1.81"
[package]
name = "egui-probe"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Trait and derive macro for exposing value editing in egui"
documentation = "https://docs.rs/egui-probe"
repository.workspace = true
rust-version.workspace = true
[features]
derive = ["dep:egui-probe-proc"]
[dependencies]
egui-probe-proc = { path = "proc", version = "=0.7.0", optional = true }
egui = { version = "0.30" }
smallvec1 = { package = "smallvec", version = "1", features = [
"const_generics",
], optional = true }
smallvec2 = { package = "smallvec", version = "2.0.0-alpha.9", optional = true }
hashbrown = { version = "0.15", optional = true }
[dev-dependencies]
eframe = "0.30"
edict = "1.0.0-rc6"
[[example]]
name = "demo"
required-features = ["derive"]
[[example]]
name = "edict"
required-features = ["derive"]
[package.metadata.docs.rs]
features = ["derive"]