diff options
Diffstat (limited to 'lampada/Cargo.toml')
-rw-r--r-- | lampada/Cargo.toml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lampada/Cargo.toml b/lampada/Cargo.toml index 3f3a803..37ce2f3 100644 --- a/lampada/Cargo.toml +++ b/lampada/Cargo.toml @@ -3,6 +3,9 @@ name = "lampada" version = "0.1.0" edition = "2021" +[features] +serde = ["dep:serde"] + [dependencies] futures = "0.3.30" luz = { version = "0.1.0", path = "../luz" } @@ -12,6 +15,7 @@ stanza = { version = "0.1.0", path = "../stanza", features = ["xep_0203"] } tokio = { workspace = true, features = ["macros", "sync"] } tracing = "0.1.41" thiserror = "2.0.11" +serde = { version = "1.0.219", features = ["derive"], optional = true } [target.'cfg(target_arch = "wasm32")'.dependencies] tokio = { workspace = true, features = ["macros", "rt", "time", "sync"] } |