mirror of
				https://github.com/isar/rusqlite.git
				synced 2025-10-31 13:58:55 +08:00 
			
		
		
		
	Undo transition to edition 2021, prep release 0.26.3
This commit is contained in:
		| @@ -1,8 +1,8 @@ | |||||||
| [package] | [package] | ||||||
| name = "rusqlite" | name = "rusqlite" | ||||||
| version = "0.26.2" | version = "0.26.3" | ||||||
| authors = ["The rusqlite developers"] | authors = ["The rusqlite developers"] | ||||||
| edition = "2021" | edition = "2018" | ||||||
| description = "Ergonomic wrapper for SQLite" | description = "Ergonomic wrapper for SQLite" | ||||||
| repository = "https://github.com/rusqlite/rusqlite" | repository = "https://github.com/rusqlite/rusqlite" | ||||||
| documentation = "http://docs.rs/rusqlite/" | documentation = "http://docs.rs/rusqlite/" | ||||||
|   | |||||||
| @@ -272,6 +272,7 @@ impl Blob<'_> { | |||||||
|     /// Return the current size in bytes of the BLOB. |     /// Return the current size in bytes of the BLOB. | ||||||
|     #[inline] |     #[inline] | ||||||
|     pub fn len(&self) -> usize { |     pub fn len(&self) -> usize { | ||||||
|  |         use std::convert::TryInto; | ||||||
|         self.size().try_into().unwrap() |         self.size().try_into().unwrap() | ||||||
|     } |     } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -103,6 +103,7 @@ impl SqliteMallocString { | |||||||
|     /// This means it's safe to use in extern "C" functions even outside of |     /// This means it's safe to use in extern "C" functions even outside of | ||||||
|     /// catch_unwind. |     /// catch_unwind. | ||||||
|     pub(crate) fn from_str(s: &str) -> Self { |     pub(crate) fn from_str(s: &str) -> Self { | ||||||
|  |         use std::convert::TryFrom; | ||||||
|         let s = if s.as_bytes().contains(&0) { |         let s = if s.as_bytes().contains(&0) { | ||||||
|             std::borrow::Cow::Owned(make_nonnull(s)) |             std::borrow::Cow::Owned(make_nonnull(s)) | ||||||
|         } else { |         } else { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user