-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
33 lines (27 loc) · 926 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
[package]
name = "egui-twemoji"
description = "An egui widget that renders colored Twemojis."
license = "Unlicense OR MIT OR Apache-2.0"
exclude = ["media/**"]
documentation = "https://docs.rs/egui-twemoji"
homepage = "https://github.com/zeozeozeo/egui-twemoji"
repository = "https://github.com/zeozeozeo/egui-twemoji"
categories = ["gui"]
keywords = ["egui", "emoji", "twemoji", "widget"]
readme = "README.md"
version = "0.6.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
egui = { version = "0.30.0", default-features = false }
twemoji-assets = { version = "1.3.0", default-features = false }
unicode-segmentation = "1.12.0"
[dev-dependencies]
eframe = "0.30.0"
egui_extras = { version = "0.30.0", features = ["svg"] }
[features]
default = ["svg"]
## SVG emojis
svg = ["twemoji-assets/svg"]
## PNG emojis
png = ["twemoji-assets/png"]