mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 00:39:20 +08:00
Merge pull request #1034 from gwenn/2021_edition
Migrate to 2021 edition
This commit is contained in:
commit
c2d595aa11
@ -2,7 +2,7 @@
|
||||
name = "rusqlite"
|
||||
version = "0.26.1"
|
||||
authors = ["The rusqlite developers"]
|
||||
edition = "2018"
|
||||
edition = "2021"
|
||||
description = "Ergonomic wrapper for SQLite"
|
||||
repository = "https://github.com/rusqlite/rusqlite"
|
||||
documentation = "http://docs.rs/rusqlite/"
|
||||
|
@ -272,7 +272,6 @@ impl Blob<'_> {
|
||||
/// Return the current size in bytes of the BLOB.
|
||||
#[inline]
|
||||
pub fn len(&self) -> usize {
|
||||
use std::convert::TryInto;
|
||||
self.size().try_into().unwrap()
|
||||
}
|
||||
|
||||
|
@ -103,7 +103,6 @@ impl SqliteMallocString {
|
||||
/// This means it's safe to use in extern "C" functions even outside of
|
||||
/// catch_unwind.
|
||||
pub(crate) fn from_str(s: &str) -> Self {
|
||||
use std::convert::TryFrom;
|
||||
let s = if s.as_bytes().contains(&0) {
|
||||
std::borrow::Cow::Owned(make_nonnull(s))
|
||||
} else {
|
||||
|
@ -520,6 +520,8 @@ impl OrderBy<'_> {
|
||||
|
||||
/// Virtual table cursor trait.
|
||||
///
|
||||
/// # Safety
|
||||
///
|
||||
/// Implementations must be like:
|
||||
/// ```rust,ignore
|
||||
/// #[repr(C)]
|
||||
|
Loading…
Reference in New Issue
Block a user