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). //! //!