blob: 3f3a8039c4110a8b44cea730014303eba7303a61 (
plain) (
tree)
|
|
[package]
name = "lampada"
version = "0.1.0"
edition = "2021"
[dependencies]
futures = "0.3.30"
luz = { version = "0.1.0", path = "../luz" }
peanuts = { version = "0.1.0", git = "https://bunny.garden/peanuts" }
jid = { version = "0.1.0", path = "../jid" }
stanza = { version = "0.1.0", path = "../stanza", features = ["xep_0203"] }
tokio = { workspace = true, features = ["macros", "sync"] }
tracing = "0.1.41"
thiserror = "2.0.11"
[target.'cfg(target_arch = "wasm32")'.dependencies]
tokio = { workspace = true, features = ["macros", "rt", "time", "sync"] }
tokio_with_wasm = { version = "0.8.2", features = ["macros", "rt", "time", "sync"] }
# [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# tokio = { version = "1.42.0", features = ["rt-multi-thread"] }
|