Add welcome crate and associated types

This commit is contained in:
Mikayla Maki 2023-02-21 18:16:47 -08:00
parent 620890c411
commit 9401ef223d
6 changed files with 90 additions and 0 deletions

21
crates/welcome/Cargo.toml Normal file
View file

@ -0,0 +1,21 @@
[package]
name = "welcome"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
path = "src/welcome.rs"
[features]
test-support = []
[dependencies]
anyhow = "1.0.38"
log = "0.4"
gpui = { path = "../gpui" }
project = { path = "../project" }
settings = { path = "../settings" }
theme = { path = "../theme" }
util = { path = "../util" }
workspace = { path = "../workspace" }