From c4d287b97d043e811ac4494b161ccdf659e1ec6c Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Sun, 25 Mar 2018 15:02:35 +0200 Subject: [PATCH] doc: Added note on linked hash maps --- src/lib.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index cda956ac..74bdf58e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,10 @@ //! This crate provides common types for working with the Sentry protocol or the -//! Sentry server. It's used by the sentry relay infrastructure as well as the +//! Sentry server. It's used by the Sentry Relay infrastructure as well as the //! rust Sentry client. +//! +//! Since this library is used in the Sentry relay as well it depends on +//! `serde_json` with the `preserve_order` feature. As such all maps used +//! by the protocol are linked hash maps. #![warn(missing_docs)] extern crate chrono; extern crate failure;