-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (34 loc) · 986 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
[package]
name = "fltk-decl"
version = "0.2.7"
authors = ["MoAlyousef <[email protected]>"]
edition = "2021"
description = "Describe your fltk-rs app declaratively, supports hot-reloading!"
repository = "https://github.com/fltk-rs/fltk-decl"
documentation = "https://docs.rs/fltk-decl"
keywords = ["gui", "ui", "widgets", "bindings", "graphics"]
categories = ["gui"]
readme = "README.md"
license = "MIT"
[dependencies]
fltk = "1.4.12"
serde = "1"
serde_derive = "1"
notify = "5.1"
serde_json = { version = "1", optional = true }
serde_json5 = { version = "0.1", optional = true }
serde-xml-rs = { version = "0.6", optional = true }
serde_yaml = { version = "0.9", optional = true }
[features]
default = []
json = ["dep:serde_json"]
json5 = ["dep:serde_json5"]
yaml = ["dep:serde_yaml"]
xml = ["dep:serde-xml-rs"]
enable-glwindow = ["fltk/enable-glwindow"]
[dev-dependencies]
serde_json5 = "0.1"
serde-xml-rs = "0.6"
serde_yaml = "0.9"
toml = "0.7"
serde-lexpr = "0.1.2"