Rust / build (macos-latest, stable) (push) Canceled after 0s
Rust / build (ubuntu-latest, stable) (push) Canceled after 0s
Rust / build (windows-latest, stable) (push) Canceled after 0s
Rust / build (macos-latest, stable) (pull_request) Canceled after 0s
Rust / build (ubuntu-latest, stable) (pull_request) Canceled after 0s
Rust / build (windows-latest, stable) (pull_request) Canceled after 0s
65 lines
2.4 KiB
TOML
65 lines
2.4 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["crates/*", "desktop"]
|
|
default-members = ["desktop"]
|
|
|
|
[workspace.package]
|
|
version = "0.1.0-alpha"
|
|
edition = "2024"
|
|
publish = false
|
|
|
|
[workspace.dependencies]
|
|
# GPUI
|
|
gpui = { git = "https://github.com/zed-industries/zed" }
|
|
gpui_platform = { git = "https://github.com/zed-industries/zed", features = ["font-kit", "x11", "wayland"] }
|
|
gpui_tokio = { git = "https://github.com/zed-industries/zed" }
|
|
reqwest_client = { git = "https://github.com/zed-industries/zed" }
|
|
|
|
# GPUI Kit
|
|
gpui-component = { git = "https://github.com/longbridge/gpui-component", rev = "39c2c86dbee7ad445591462f8675f74082e10828", features = ["tree-sitter-languages"], }
|
|
gpui-base = { git = "https://github.com/longbridge/gpui-component", rev = "39c2c86dbee7ad445591462f8675f74082e10828" }
|
|
gpui-fps = { git = "https://github.com/longbridge/gpui-component", rev = "39c2c86dbee7ad445591462f8675f74082e10828" }
|
|
|
|
dock = { path = "crates/dock" }
|
|
settings = { path = "crates/settings" }
|
|
|
|
nostr = { git = "https://github.com/rust-nostr/nostr", features = ["nip59", "nip49", "nip44", "os-rng"] }
|
|
nostr-lmdb = { git = "https://github.com/rust-nostr/nostr" }
|
|
nostr-memory = { git = "https://github.com/rust-nostr/nostr" }
|
|
nostr-blossom = { git = "https://github.com/rust-nostr/nostr" }
|
|
nostr-gossip-memory = { git = "https://github.com/rust-nostr/nostr" }
|
|
nostr-connect = { git = "https://github.com/rust-nostr/nostr" }
|
|
nostr-sdk = { git = "https://github.com/rust-nostr/nostr" }
|
|
|
|
gix = { version = "0.87.1", default-features = false, features = ["sha1", "blocking-network-client", "blocking-http-transport-reqwest-rust-tls", "worktree-mutation", "status"] }
|
|
|
|
smol = "2"
|
|
futures = "0.3"
|
|
flume = { version = "0.11.1", default-features = false, features = ["async", "select"] }
|
|
rust-embed = { version = "8.5", features = ["include-exclude"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
schemars = "1"
|
|
log = "0.4"
|
|
anyhow = "1.0.44"
|
|
webbrowser = "1.0.4"
|
|
tracing-subscriber = { version = "0.3.18", features = ["fmt"] }
|
|
tracing = "0.1"
|
|
errno = { version = "0.3.14", default-features = false }
|
|
instant = "0.1"
|
|
|
|
[patch.crates-io]
|
|
# Use stacker's psm version which may have better WASM support
|
|
psm = { git = "https://github.com/rust-lang/stacker", branch = "master" }
|
|
|
|
[profile.release]
|
|
strip = true
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "unwind"
|
|
|
|
[profile.profiling]
|
|
inherits = "release"
|
|
debug = true
|