diff --git a/Cargo.toml b/Cargo.toml index 751a9cf..f9a854d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/src/lib.rs b/src/lib.rs index b139498..b44c554 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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".