diff options
author | 2025-04-28 19:53:11 +0100 | |
---|---|---|
committer | 2025-04-28 19:53:11 +0100 | |
commit | 42c7423667a2d6acdebca75250ad30c5d475081b (patch) | |
tree | 65faaac42cf3f8ef83715ee7f66db1af45dd39d6 /filamento/Cargo.toml | |
parent | 66cd4d48142124d920e5cc57f685555d279b8c7a (diff) | |
download | luz-42c7423667a2d6acdebca75250ad30c5d475081b.tar.gz luz-42c7423667a2d6acdebca75250ad30c5d475081b.tar.bz2 luz-42c7423667a2d6acdebca75250ad30c5d475081b.zip |
feat: serde
Diffstat (limited to '')
-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"] } |