26 lines
574 B
TOML
26 lines
574 B
TOML
[package]
|
|
name = "workspace"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
|
|
[dependencies]
|
|
ui = { path = "../ui" }
|
|
theme = { path = "../theme" }
|
|
common = { path = "../common" }
|
|
state = { path = "../state" }
|
|
device = { path = "../device" }
|
|
chat = { path = "../chat" }
|
|
chat_ui = { path = "../chat_ui" }
|
|
settings = { path = "../settings" }
|
|
person = { path = "../person" }
|
|
|
|
gpui.workspace = true
|
|
nostr-sdk.workspace = true
|
|
nostr-connect.workspace = true
|
|
|
|
anyhow.workspace = true
|
|
serde.workspace = true
|
|
log.workspace = true
|
|
smallvec.workspace = true
|