diff options
Diffstat (limited to 'filamento/Cargo.toml')
-rw-r--r-- | filamento/Cargo.toml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/filamento/Cargo.toml b/filamento/Cargo.toml index 04fd90c..cc05288 100644 --- a/filamento/Cargo.toml +++ b/filamento/Cargo.toml @@ -3,6 +3,9 @@ name = "filamento" version = "0.1.0" edition = "2024" +[features] +serde = ["dep:serde", "jid/serde", "uuid/serde", "chrono/serde", "lampada/serde"] + [dependencies] futures = "0.3.30" lampada = { version = "0.1.0", path = "../lampada" } @@ -21,6 +24,7 @@ base64 = "0.22.1" sha1 = "0.10.6" image = "0.25.6" hex = "0.4.3" +serde = { version = "1.0.219", features = ["derive"], optional = true } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] tokio = { workspace = true, features = ["sync", "time", "rt", "fs", "io-std"] } |