Skip to content

Commit 3f60631

Browse files
committed
relax sqlite min version to 3.43.0 to support iOS; fixes #32
1 parent da0ce08 commit 3f60631

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vfs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use core::{
1616

1717
/// The minimim supported `SQLite` version.
1818
// If you need to make this earlier, make sure the tests are testing the earlier version
19-
pub const MIN_SQLITE_VERSION_NUMBER: i32 = 3044000;
19+
pub const MIN_SQLITE_VERSION_NUMBER: i32 = 3043000;
2020

2121
const DEFAULT_MAX_PATH_LEN: i32 = 512;
2222
pub const DEFAULT_SECTOR_SIZE: i32 = 4096;

0 commit comments

Comments
 (0)