forked from talwat/pokeget-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (28 loc) · 811 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
[package]
name = "pokeget"
authors = [ "talwat" ]
version = "1.6.4"
edition = "2021"
description = "Display pokemon sprites in your terminal."
license = "MIT"
readme = "README.md"
categories = ["command-line-interface", "command-line-utilities"]
keywords = ["pokemon", "pokeget", "terminal", "colorscripts", "cli"]
documentation = "https://github.com/talwat/pokeget-rs"
homepage = "https://github.com/talwat/pokeget-rs"
repository = "https://github.com/talwat/pokeget-rs"
[profile.release]
codegen-units = 1
lto = "thin"
strip = "symbols"
[dependencies]
Inflector = "0.11.4"
bimap = "0.6.3"
clap = { version = "4.5.14", features = ["derive"] }
csv = "1.3.0"
image = { version = "0.24.9", default-features = false, features = [
"png",
] }
rand = "0.8.5"
rust-embed = { version = "8.5.0" }
showie = "1.0.1"