forked from kornelski/gh-emoji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (27 loc) · 1000 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 = "node-emoji"
version = "1.0.7"
authors = ["Daan Wynen <[email protected]>", "Kornel <[email protected]>", "Jiří Šebele <[email protected]>"]
description = "Convert `:emoji:` to Unicode using GitHub's and EmojiDB's emoji names"
repository = "https://github.com/black-puppydog/node-emoji-rs"
readme = "README.md"
license = "MIT"
include = ["/src/*.rs", "/LICENSE", "/README.md", "/Cargo.toml"]
categories = ["text-processing"]
keywords = ["emoji", "github", "markdown", "unicode", "node-emoji"]
edition = "2021"
[features]
# Use the expanded emoji set, adding the shortcodes from emoji-db on top of gemoji
emojidb = []
[dependencies]
phf = "0.11.0"
regex = { version = "1.6.0", default-features = false, features = ["std"] }
[dev-dependencies]
once_cell = "1.16.0"
pretty_assertions = "1.3.0"
seq-macro = "0.3.1"
serde_json = "1.0.87"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[badges]
maintenance = { status = "passively-maintained" }