diff --git a/Cargo.toml b/Cargo.toml index 5c00dcea..e514780f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ time = "0.1" uuid = "0.5" [dependencies.rusqlite] -version = "0.12" +version = "0.13" # System sqlite might be very old. features = ["limits"] diff --git a/db/Cargo.toml b/db/Cargo.toml index 7ab6b5aa..7ace370c 100644 --- a/db/Cargo.toml +++ b/db/Cargo.toml @@ -11,7 +11,7 @@ ordered-float = "0.5" time = "0.1" [dependencies.rusqlite] -version = "0.12" +version = "0.13" features = ["limits"] [dependencies.edn] diff --git a/query-projector/Cargo.toml b/query-projector/Cargo.toml index ada8dea0..92aa6e60 100644 --- a/query-projector/Cargo.toml +++ b/query-projector/Cargo.toml @@ -7,7 +7,7 @@ workspace = ".." error-chain = { git = "https://github.com/rnewman/error-chain", branch = "rnewman/sync" } [dependencies.rusqlite] -version = "0.12" +version = "0.13" features = ["limits"] [dependencies.mentat_core] diff --git a/sql/Cargo.toml b/sql/Cargo.toml index 082bf49a..f762bae5 100644 --- a/sql/Cargo.toml +++ b/sql/Cargo.toml @@ -8,7 +8,7 @@ error-chain = { git = "https://github.com/rnewman/error-chain", branch = "rnewma ordered-float = "0.5" [dependencies.rusqlite] -version = "0.12" +version = "0.13" features = ["limits"] [dependencies.mentat_core] diff --git a/tolstoy/Cargo.toml b/tolstoy/Cargo.toml index 0d5fdc4e..52c4eb22 100644 --- a/tolstoy/Cargo.toml +++ b/tolstoy/Cargo.toml @@ -25,5 +25,5 @@ path = "../core" path = "../db" [dependencies.rusqlite] -version = "0.12" +version = "0.13" features = ["limits"] diff --git a/tools/cli/Cargo.toml b/tools/cli/Cargo.toml index cfe76d31..93c3488f 100644 --- a/tools/cli/Cargo.toml +++ b/tools/cli/Cargo.toml @@ -25,7 +25,7 @@ time = "0.1" error-chain = { git = "https://github.com/rnewman/error-chain", branch = "rnewman/sync" } [dependencies.rusqlite] -version = "0.12" +version = "0.13" features = ["limits"] [dependencies.mentat]