From 90ecf3d15645b2ed2f97c1cfb0a77a634384e78c Mon Sep 17 00:00:00 2001 From: Alisa Sireneva Date: Wed, 30 Oct 2024 10:51:39 +0300 Subject: [PATCH] Remove revolve mention for now --- README.md | 2 +- src/lib.rs | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0b515b6..fba8af8 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,6 @@ Lightweight exceptions. Lithium provides a custom exception mechanism as an alternative to Rust panics. Compared to Rust panics, this mechanism is allocation-free, avoids indirections and RTTI, and hence faster, if less applicable. -Under the default configuration, Lithium is more than 2x faster Rust panics on common `Result`-like usecases. When used together with the [`revolve`](https://lib.rs/revolve) crate, it's 2-4x faster than Rust panics, bringing timings down to about 10 ns per frame with `map_err` in realistic code -- faster than an allocation. See the [benchmark](benches/bench.rs). +Under the default configuration, Lithium is more than 2x faster Rust panics on common `Result`-like usecases. See the [benchmark](benches/bench.rs). See [documentation](https://docs.rs/lithium) for usage and installation instructions. diff --git a/src/lib.rs b/src/lib.rs index 296d735..b4a94b1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,9 +5,7 @@ //! less applicable. //! //! Under the default configuration, Lithium is more than 2x faster Rust panics on common -//! `Result`-like usecases. When used together with the [`revolve`](https://lib.rs/revolve) crate, -//! it's 2-4x faster than Rust panics, bringing timings down to about 10 ns per frame with `map_err` -//! in realistic code -- faster than an allocation. See the +//! `Result`-like usecases. See the //! [benchmark](https://github.com/iex-rs/lithium/blob/master/benches/bench.rs). //! //!