iced-yoda/runtime/Cargo.toml

24 lines
451 B
TOML
Raw Normal View History

2019-09-20 19:15:31 +02:00
[package]
2023-03-05 06:35:20 +01:00
name = "iced_runtime"
2023-08-02 22:44:55 +02:00
version = "0.1.1"
2019-09-20 19:15:31 +02:00
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
2022-02-09 17:53:35 +07:00
edition = "2021"
2023-07-28 19:49:36 +02:00
description = "A renderer-agnostic runtime for Iced"
2019-09-20 19:15:31 +02:00
license = "MIT"
repository = "https://github.com/iced-rs/iced"
2019-09-20 19:15:31 +02:00
2020-05-21 04:27:31 +02:00
[features]
debug = []
2019-09-20 19:15:31 +02:00
[dependencies]
thiserror = "1"
[dependencies.iced_core]
2023-07-28 19:48:39 +02:00
version = "0.10"
path = "../core"
[dependencies.iced_futures]
2023-07-28 19:48:39 +02:00
version = "0.7"
path = "../futures"
features = ["thread-pool"]