aboutsummaryrefslogtreecommitdiffstats
path: root/lampada/Cargo.toml
blob: 22f133d9b91b5855f936199291cd655daf7ac5f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "lampada"
version = "0.1.0"
edition = "2021"

[dependencies]
futures = "0.3.31"
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 = { version = "1.42.0", features = ["macros"] }
tracing = "0.1.41"
thiserror = "2.0.11"

[target.'cfg(target_arch = "wasm32")'.dependencies]
tokio = { version = "1.42.0", features = ["macros", "rt", "time"] }
wasm-bindgen-futures = "0.4"

# [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# tokio = { version = "1.42.0", features = ["rt-multi-thread"] }