-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (39 loc) · 888 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
38
39
40
41
42
43
44
45
46
[package]
name = "twemoji-assets"
version.workspace = true
authors = ["Tim 'Piepmatz' Hesse"]
repository = "https://github.com/cptpiepmatz/twemoji-assets"
keywords = ["twitter", "emoji", "twemoji", "assets"]
categories = ["graphics", "value-formatting"]
edition.workspace = true
description = "A sophisticated crate that provides the assets from Twemoji."
license = "MIT"
exclude = [
".gitignore",
"Cargo.lock",
"emojibase.data.json",
"emojibase.shortcodes.json",
"gen.rs",
"Makefile.toml",
"templates"
]
[workspace.package]
version = "1.3.0+15.1.0"
edition = "2021"
[features]
default = ["svg", "names"]
svg = []
png = []
names = []
[workspace]
members = ["examples", "tests"]
[dev-dependencies]
criterion = "0.5"
[[bench]]
name = "from_emoji"
harness = false
[[bench]]
name = "from_name"
harness = false
[package.metadata.docs.rs]
all-features = true