We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version.
25 lines
466 B
TOML
25 lines
466 B
TOML
[package]
|
|
name = "pokedex"
|
|
version = "0.1.0"
|
|
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
iced.workspace = true
|
|
iced.features = ["image", "debug", "tokio"]
|
|
|
|
serde_json = "1.0"
|
|
|
|
[dependencies.serde]
|
|
version = "1.0"
|
|
features = ["derive"]
|
|
|
|
[dependencies.reqwest]
|
|
version = "0.11"
|
|
default-features = false
|
|
features = ["json", "rustls-tls"]
|
|
|
|
[dependencies.rand]
|
|
version = "0.7"
|
|
features = ["wasm-bindgen"]
|