forked from jiri/rust-emojicons
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
25 lines (21 loc) · 799 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
[package]
name = "gh-emoji"
version = "1.0.8"
authors = ["Kornel <[email protected]>", "Jiří Šebele <[email protected]>"]
description = "Convert `:emoji:` to Unicode using GitHub's emoji names"
repository = "https://github.com/kornelski/gh-emoji"
homepage = "https://lib.rs/crates/gh-emoji"
readme = "README.md"
license = "MIT"
include = ["/src/*.rs", "/LICENSE", "/README.md", "/Cargo.toml"]
categories = ["text-processing"]
keywords = ["emoji", "github", "markdown", "unicode", "convert"]
edition = "2018"
[dependencies]
phf = "0.11.0"
regex = { version = "1.6.0", default-features = false, features = ["std"] }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--generate-link-to-definition"]
[badges]
maintenance = { status = "passively-maintained" }