-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (24 loc) · 813 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (24 loc) · 813 Bytes
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
[workspace]
members = ["generate"]
[package]
name = "emojis"
version = "0.9.0"
authors = ["Ross MacArthur <ross@macarthur.io>"]
edition = "2021"
rust-version = "1.66"
description = "✨ Lookup emoji in *O(1)* time, access metadata and GitHub shortcodes, iterate over all emoji, and more!"
readme = "README.md"
repository = "https://github.com/rossmacarthur/emojis"
license = "(MIT OR Apache-2.0) AND Unicode-3.0"
keywords = ["emoji", "unicode", "github", "gemoji"]
categories = ["text-processing", "no-std"]
[package.metadata.docs.rs]
all-features = true
[dependencies]
phf = { version = "0.13.1", default-features = false }
serde = { version = "1.0.145", default-features = false, features = ["derive"], optional = true }
[dev-dependencies]
serde_json = "1.0.99"
toml = "1"
[features]
serde = ["dep:serde"]