35 lines
715 B
TOML
35 lines
715 B
TOML
[package]
|
|
name = "coop"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "coop"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
ui = { path = "../ui" }
|
|
common = { path = "../common" }
|
|
state = { path = "../state" }
|
|
app_state = { path = "../app_state" }
|
|
chat_state = { path = "../chat_state" }
|
|
|
|
gpui.workspace = true
|
|
gpui_tokio.workspace = true
|
|
reqwest_client.workspace = true
|
|
|
|
tokio.workspace = true
|
|
nostr-connect.workspace = true
|
|
nostr-sdk.workspace = true
|
|
anyhow.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
itertools.workspace = true
|
|
dirs.workspace = true
|
|
rust-embed.workspace = true
|
|
smol.workspace = true
|
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["fmt"] }
|
|
log = "0.4"
|