tvl-depot/tvix/serde/Cargo.toml
Ilan Joselevich 5a97888d8b chore(tvix): Migrate members to inherit deps from workspace
From now on we will add the dependencies and their version in the root
Cargo.toml and in order to enable the dependency for a workspace member
we set `workspace = true` in the member's Cargo.toml.

Change-Id: I9738c1cf99810b7ace87ca712c3ea965ba846e25
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12389
Autosubmit: Ilan Joselevich <personal@ilanjoselevich.com>
Tested-by: BuildkiteCI
Reviewed-by: flokli <flokli@flokli.de>
2024-08-29 14:37:22 +00:00

9 lines
216 B
TOML

[package]
name = "tvix-serde"
version = "0.1.0"
edition = "2021"
[dependencies]
tvix-eval = { path = "../eval" }
serde = { workspace = true, features = ["derive"] }
bstr = { workspace = true, features = ["serde"] }