2019-09-20 19:15:31 +02:00
|
|
|
[package]
|
2023-03-05 06:35:20 +01:00
|
|
|
name = "iced_runtime"
|
2023-04-17 23:41:12 +02:00
|
|
|
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"
|
2021-12-23 09:34:37 +02:00
|
|
|
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]
|
2023-03-01 21:34:26 +01:00
|
|
|
thiserror = "1"
|
2020-01-19 10:17:08 +01:00
|
|
|
|
|
|
|
|
[dependencies.iced_core]
|
2023-04-13 08:31:17 +02:00
|
|
|
version = "0.9"
|
2020-01-19 10:17:08 +01:00
|
|
|
path = "../core"
|
|
|
|
|
|
|
|
|
|
[dependencies.iced_futures]
|
2023-02-18 12:04:40 +01:00
|
|
|
version = "0.6"
|
2020-01-19 10:17:08 +01:00
|
|
|
path = "../futures"
|
2020-01-20 04:47:36 +01:00
|
|
|
features = ["thread-pool"]
|