forked from Relm4/Relm4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (37 loc) · 1.2 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
[package]
name = "relm4"
authors = ["Aaron Erhardt <[email protected]>"]
edition = "2021"
version = "0.4.1"
description = "An idiomatic GUI library inspired by Elm and based on gtk4-rs"
repository = "https://github.com/AaronErhardt/relm4"
readme = "README.md"
license = "Apache-2.0 OR MIT"
documentation = "https://aaronerhardt.github.io/docs/relm4/relm4/"
keywords = ["gui", "gtk", "gtk4"]
categories = ["gui"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"relm4-components",
"relm4-examples",
"relm4-examples/libadwaita",
"relm4-macros",
]
[dependencies]
adw = { version = "0.1", optional = true, package = "libadwaita" }
async-trait = { version = "0.1", optional = true }
fragile = "1.1"
futures-core = "0.3"
gtk = { version = "0.4.1", package = "gtk4" }
log = "0.4.14"
once_cell = "1.8"
#relm4-macros = { version = "0.4.1", optional = true }
relm4-macros = { path = "relm4-macros", optional = true }
tokio = { version = "1.15", optional = true, features = ["rt"] }
[features]
default = []
libadwaita = ["adw"]
tokio-rt = ["tokio", "async-trait"]
macros = ["relm4-macros"]
all = ["tokio-rt", "libadwaita", "macros"]