iced-yoda/runtime/Cargo.toml

24 lines
457 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"
version = "0.1.0"
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"
2019-09-20 19:15:31 +02:00
description = "A renderer-agnostic library for native GUIs"
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-04-13 08:31:17 +02:00
version = "0.9"
path = "../core"
[dependencies.iced_futures]
2023-02-18 12:04:40 +01:00
version = "0.6"
path = "../futures"
features = ["thread-pool"]