Added: - [x] Chage subject - [x] Copy public key - [x] View user's messaging relays - [x] View user profile on njump Reviewed-on: #17 Co-authored-by: Ren Amamiya <reya@lume.nu> Co-committed-by: Ren Amamiya <reya@lume.nu>
55 lines
1.6 KiB
TOML
55 lines
1.6 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["crates/*"]
|
|
default-members = ["crates/coop"]
|
|
|
|
[workspace.package]
|
|
version = "1.0.0-beta"
|
|
edition = "2021"
|
|
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_linux = { git = "https://github.com/zed-industries/zed" }
|
|
gpui_windows = { git = "https://github.com/zed-industries/zed" }
|
|
gpui_macos = { git = "https://github.com/zed-industries/zed" }
|
|
gpui_tokio = { git = "https://github.com/zed-industries/zed" }
|
|
reqwest_client = { git = "https://github.com/zed-industries/zed" }
|
|
|
|
# Nostr
|
|
nostr-lmdb = { git = "https://github.com/rust-nostr/nostr" }
|
|
nostr-connect = { git = "https://github.com/rust-nostr/nostr" }
|
|
nostr-blossom = { git = "https://github.com/rust-nostr/nostr" }
|
|
nostr-sdk = { git = "https://github.com/rust-nostr/nostr" }
|
|
nostr = { git = "https://github.com/rust-nostr/nostr", features = [ "nip96", "nip59", "nip49", "nip44" ] }
|
|
|
|
# Others
|
|
anyhow = "1.0.44"
|
|
chrono = "0.4.38"
|
|
futures = "0.3"
|
|
itertools = "0.13.0"
|
|
log = "0.4"
|
|
oneshot = "0.1.10"
|
|
flume = { version = "0.11.1", default-features = false, features = ["async", "select"] }
|
|
rust-embed = "8.5.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
schemars = "1"
|
|
smallvec = "1.14.0"
|
|
smol = "2"
|
|
tracing = "0.1.40"
|
|
webbrowser = "1.0.4"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
|
|
[profile.profiling]
|
|
inherits = "release"
|
|
debug = true
|