From d93ec99afd8111549790a00a13a29447384511d8 Mon Sep 17 00:00:00 2001 From: Art <4998038+Alorel@users.noreply.github.com> Date: Sun, 27 Oct 2024 11:54:03 +0000 Subject: [PATCH] docs: Add environment support table --- src/lib.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 0ec688d..32513bb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -201,6 +201,20 @@ //! ``` //! +//! # Environment support +//! +//! The following table is populated **as a best effort attempt** based on the crate's unit tests succeeding/failing +//! under different configurations. +//! +//! | Environment | Chrome | Firefox | Safari | +//! |------------------|---------|---------|--------| +//! | Browser | ✅ | ✅ | ✅ | +//! | Dedicated Worker | ✅ | ✅ | ✅ | +//! | Shared Worker | ✅ | ✅ | ✅ | +//! | Worker | ✅ | ✅ | ✅ | +//! | Service worker | ✅ | ❌ | ✅ | +//! + //! # Feature table //! //! | Feature | Description |