-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (29 loc) · 1.17 KB
/
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 = "pokeget-plus"
authors = [ "talwat", "Criomby <[email protected]>" ]
version = "1.7.0"
edition = "2021"
description = """Display Pokémon, Pokéballs, berries, potions & more items in your terminal.
List of all Pokémon & items: https://msikma.github.io/pokesprite/overview/dex-gen8.html
Full documentation: https://github.com/Criomby/pokeget-plus"""
license = "MIT"
readme = "README.md"
documentation = "https://github.com/Criomby/pokeget-plus"
homepage = "https://github.com/Criomby/pokeget-plus"
repository = "https://github.com/Criomby/pokeget-plus"
[[bin]]
name = "pokeget"
path = "src/main.rs"
[features]
# gen8 sprites are always included
default = ["gen7", "items"] # all features enabled by default
gen7 = [] # include gen7 sprites (--gen7)
items = [] # include items like Pokéballs, berries, etc. (-i, --item)
[dependencies]
Inflector = { version = "0.11.4", default-features = false }
clap = { version = "4.5", features = ["derive"] }
image = { version = "0.24.6", default-features = false, features = ["png","rgb",] }
rand = "0.8.5"
rust-embed = { version = "8.3.0", features = ["include-exclude"] }
showie = "1.0.0"
serde_json = { version = "1.0" }