Move styling to a brand new iced_style crate

This commit is contained in:
Héctor Ramón Jiménez 2020-01-01 14:16:10 +01:00
parent 9ab7c47dc7
commit e1062a02d1
10 changed files with 154 additions and 121 deletions

14
style/Cargo.toml Normal file
View file

@ -0,0 +1,14 @@
[package]
name = "iced_style"
version = "0.1.0-alpha"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2018"
description = "The default set of styles of Iced"
license = "MIT"
repository = "https://github.com/hecrj/iced"
documentation = "https://docs.rs/iced_style"
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
categories = ["gui"]
[dependencies]
iced_core = { version = "0.1.0", path = "../core" }