18 lines
494 B
TOML
18 lines
494 B
TOML
[package]
|
|
name = "pokedex"
|
|
version = "0.1.0"
|
|
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
iced = { path = "../..", features = ["image", "debug", "tokio"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
rand = { version = "0.7", features = ["wasm-bindgen"] }
|
|
|
|
[dependencies.reqwest]
|
|
version = "0.10"
|
|
git = "https://github.com/hecrj/reqwest.git"
|
|
branch = "feature/wasm-deserialize-json"
|
|
features = ["json"]
|