[package]
name = "emote_mapper"
version = "0.1.0"
edition = "2018"
description = "Maps emote names to their respective emoji using a csv map"
license = "MIT"
repository = "https://nest.pijul.com/ModProg/emote_mapper"
keywords = ["cli", "emoji", "emote"]
categories = ["command-line-interface", "text-processing"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
csv = "1.1.6"
lazy_static = { version = "1.4.0", optional = true }
regex = { version = "1.0", optional = true }
serde = { version = "1.0.130", features = ["derive"] }
serde_with = { version = "1.10.0" }
thiserror = "1.0.30"

[features]
default = ["re"]
re = ["regex", "lazy_static"]