-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (43 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
55 lines (43 loc) · 1.16 KB
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
46
47
48
49
50
51
52
53
54
55
[workspace]
resolver = "2"
members = ["update_icons", "build_icons"]
[workspace.package]
authors = ["Aaron Erhardt <aaron.erhardt@t-online.de>"]
version = "0.11.0"
edition = "2024"
rust-version = "1.92"
license = "(Apache-2.0 OR MIT) AND CC0-1.0 AND MIT"
description = "Icons for gtk-rs and Relm4 applications"
homepage = "https://relm4.org"
repository = "https://github.com/Relm4/icons"
keywords = ["gui", "gtk", "gtk4", "elm"]
categories = ["gui"]
[package]
name = "relm4-icons"
authors.workspace = true
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
description.workspace = true
readme = "README.md"
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true
# Don't ship submodules
exclude = ["source/"]
[dependencies]
gtk = { version = "0.11", package = "gtk4" }
[package.metadata.docs.rs]
all-features = true
# enable unstable features in the documentation
rustc-args = ["--cfg", "docsrs"]
rustdoc-args = ["--cfg", "docsrs"]
[features]
default = []
all = []
# Enable entire icon kits
icon-development-kit-www = []
fluent-system-icons = []
icon-development-kit = []