Skip to content

Commit

Permalink
Remove revolve mention for now
Browse files Browse the repository at this point in the history
  • Loading branch information
purplesyringa committed Oct 30, 2024
1 parent 42b71a5 commit 90ecf3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
4 changes: 1 addition & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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).
//!
//!
Expand Down

0 comments on commit 90ecf3d

Please sign in to comment.