From 61531ddd9ebf274657d35171e56389d747d4d19c Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 26 Dec 2022 22:06:47 -0800 Subject: [PATCH] Link to serde_starlark data format --- serde/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/serde/src/lib.rs b/serde/src/lib.rs index e4bc7c8f..e37afe01 100644 --- a/serde/src/lib.rs +++ b/serde/src/lib.rs @@ -45,6 +45,8 @@ //! definition. //! - [JSON5], a superset of JSON including some productions from ES5. //! - [URL] query strings, in the x-www-form-urlencoded format. +//! - [Starlark], the format used for describing build targets by the Bazel and +//! Buck build systems. *(serialization only)* //! - [Envy], a way to deserialize environment variables into Rust structs. //! *(deserialization only)* //! - [Envy Store], a way to deserialize [AWS Parameter Store] parameters into @@ -74,6 +76,7 @@ //! [Avro]: https://docs.rs/apache-avro //! [JSON5]: https://github.com/callum-oakley/json5-rs //! [URL]: https://docs.rs/serde_qs +//! [Starlark]: https://github.com/dtolnay/serde-starlark //! [Envy]: https://github.com/softprops/envy //! [Envy Store]: https://github.com/softprops/envy-store //! [Cargo]: https://doc.rust-lang.org/cargo/reference/manifest.html