Extract theme into its own crate

This commit is contained in:
Antonio Scandurra 2021-10-05 11:14:30 +02:00
parent 0022c6b828
commit 2087c4731f
16 changed files with 62 additions and 38 deletions

15
crates/theme/Cargo.toml Normal file
View file

@ -0,0 +1,15 @@
[package]
name = "theme"
version = "0.1.0"
edition = "2018"
[dependencies]
editor = { path = "../editor" }
gpui = { path = "../gpui" }
anyhow = "1.0.38"
indexmap = "1.6.2"
parking_lot = "0.11.1"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1.0.64", features = ["preserve_order"] }
serde_path_to_error = "0.1.4"
toml = "0.5"