37 lines
1.2 KiB
TOML
37 lines
1.2 KiB
TOML
[package]
|
|
name = "coop_web"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
|
|
[dependencies]
|
|
workspace = { path = "../crates/workspace" }
|
|
assets = { path = "../crates/assets" }
|
|
ui = { path = "../crates/ui" }
|
|
theme = { path = "../crates/theme" }
|
|
common = { path = "../crates/common" }
|
|
state = { path = "../crates/state" }
|
|
device = { path = "../crates/device" }
|
|
chat = { path = "../crates/chat" }
|
|
settings = { path = "../crates/settings" }
|
|
person = { path = "../crates/person" }
|
|
relay_auth = { path = "../crates/relay_auth" }
|
|
|
|
gpui.workspace = true
|
|
gpui_platform.workspace = true
|
|
gpui_web = { git = "https://github.com/zed-industries/zed" }
|
|
|
|
nostr-sdk.workspace = true
|
|
log.workspace = true
|
|
|
|
console_error_panic_hook = "0.1"
|
|
tracing-wasm = "0.2"
|
|
console_log = "1.0"
|
|
wasm-bindgen = "0.2"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
getrandom_0_2 = { package = "getrandom", version = "0.2", features = ["js"] }
|
|
getrandom_0_3 = { package = "getrandom", version = "0.3", features = ["wasm_js"] }
|
|
getrandom_0_4 = { package = "getrandom", version = "0.4", features = ["wasm_js"] }
|
|
tokio = { version = "1", default-features = false, features = ["sync", "macros", "io-util", "rt", "time"] }
|