Some checks failed
Rust / build (ubuntu-latest, stable) (push) Failing after 1m25s
Rust / build (ubuntu-latest, stable) (pull_request) Failing after 1m13s
64 lines
1.5 KiB
TOML
64 lines
1.5 KiB
TOML
[package]
|
|
name = "coop"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
|
|
[[bin]]
|
|
name = "coop"
|
|
path = "src/main.rs"
|
|
|
|
[package.metadata.packager]
|
|
name = "Coop"
|
|
product-name = "Coop"
|
|
description = "Chat Freely, Stay Private on Nostr"
|
|
identifier = "su.reya.coop"
|
|
category = "SocialNetworking"
|
|
version = "0.3.0"
|
|
out-dir = "../../dist"
|
|
before-packaging-command = "cargo build --release"
|
|
resources = ["Cargo.toml", "src"]
|
|
icons = [
|
|
"resources/32x32.png",
|
|
"resources/128x128.png",
|
|
"resources/128x128@2x.png",
|
|
"resources/icon.icns",
|
|
"resources/icon.ico",
|
|
]
|
|
|
|
[dependencies]
|
|
assets = { path = "../assets" }
|
|
ui = { path = "../ui" }
|
|
titlebar = { path = "../titlebar" }
|
|
dock = { path = "../dock" }
|
|
theme = { path = "../theme" }
|
|
common = { path = "../common" }
|
|
state = { path = "../state" }
|
|
device = { path = "../device" }
|
|
chat = { path = "../chat" }
|
|
chat_ui = { path = "../chat_ui" }
|
|
settings = { path = "../settings" }
|
|
auto_update = { path = "../auto_update" }
|
|
person = { path = "../person" }
|
|
relay_auth = { path = "../relay_auth" }
|
|
|
|
gpui.workspace = true
|
|
gpui_tokio.workspace = true
|
|
reqwest_client.workspace = true
|
|
|
|
nostr-connect.workspace = true
|
|
nostr-sdk.workspace = true
|
|
|
|
anyhow.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
itertools.workspace = true
|
|
log.workspace = true
|
|
smallvec.workspace = true
|
|
smol.workspace = true
|
|
futures.workspace = true
|
|
oneshot.workspace = true
|
|
|
|
indexset = "0.12.3"
|
|
tracing-subscriber = { version = "0.3.18", features = ["fmt"] }
|