9f5c2eb0c4
* Add advanced download example * Rename to task fields and variables * Cargo fmt advanced_download/src/download.rs * Add progress bar for advanced download example * Merge two download examples to single one * Apply great review suggestions * Change to url::Url instead of plain String * Simplify `download_progress` example * Update `README` of `download_progress` example Co-authored-by: Héctor Ramón Jiménez <hector0193@gmail.com>
13 lines
331 B
TOML
13 lines
331 B
TOML
[package]
|
|
name = "download_progress"
|
|
version = "0.1.0"
|
|
authors = ["Songtronix <contact@songtronix.com>", "Folyd <lyshuhow@gmail.com>"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
iced = { path = "../..", features = ["tokio"] }
|
|
iced_native = { path = "../../native" }
|
|
iced_futures = { path = "../../futures" }
|
|
reqwest = "0.11"
|