Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,13 @@ no-canonicalize-path = []
arrayref = "0.3"
bincode = "1.0"
bitflags = {version = "2.4.1", features = ["serde"]}
byteorder = "1"
id-arena = "2.2"
lazy_static = "1.1"
log = "0.4.20"
ordered-float = "3.0.0"
paste = "1.0.6"
serde = {version = "1.0.144", features = ["derive", "rc"]}
serde_derive = "1.0"
thiserror = "1.0"
thiserror = "2.0"
url = "2.0"
uuid = "1.0"

Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
// specific language governing permissions and limitations under the License.
#![allow(clippy::uninlined_format_args)] // This is old code, we won't convert it
#![allow(clippy::from_over_into)]
#![allow(unknown_lints)] // allow the `mismatched_lifetime_syntaxes` (nightly only right now)
#![allow(mismatched_lifetime_syntaxes)]

//! A simple, humane, typed key-value storage solution.
//! It only has a single backend engine: "SafeMode".
Expand Down