diff --git a/Cargo.toml b/Cargo.toml index 735aee39..b32c1873 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,7 +53,7 @@ log = "~0.4" uuid = { version = "~1.0", features = ["v4", "serde"] } [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.edn] diff --git a/db-traits/Cargo.toml b/db-traits/Cargo.toml index 8f57fe3d..0ab3a2f1 100644 --- a/db-traits/Cargo.toml +++ b/db-traits/Cargo.toml @@ -21,5 +21,5 @@ path = "../edn" path = "../core-traits" [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] diff --git a/db/Cargo.toml b/db/Cargo.toml index bc47a6be..243db1c0 100644 --- a/db/Cargo.toml +++ b/db/Cargo.toml @@ -22,7 +22,7 @@ serde_json = { version = "~1.0", optional = true } serde_derive = { version = "~1.0", optional = true } [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.edn] diff --git a/edn/Cargo.toml b/edn/Cargo.toml index 9ac64a04..3a4b73d4 100644 --- a/edn/Cargo.toml +++ b/edn/Cargo.toml @@ -14,7 +14,7 @@ chrono = "~0.4" itertools = "~0.10" num = "~0.4" ordered-float = "~2.8" -pretty = "~0.10" +pretty = "~0.12" uuid = { version = "~1.0", features = ["v4", "serde"] } serde = { version = "~1.0", optional = true } serde_derive = { version = "~1.0", optional = true } diff --git a/public-traits/Cargo.toml b/public-traits/Cargo.toml index 0804984a..8c3b5e27 100644 --- a/public-traits/Cargo.toml +++ b/public-traits/Cargo.toml @@ -20,7 +20,7 @@ tokio = { version = "1.8.0", features = ["full"] } uuid = "~1.0" [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.hyper] diff --git a/query-projector-traits/Cargo.toml b/query-projector-traits/Cargo.toml index 60abc39a..7362ee5e 100644 --- a/query-projector-traits/Cargo.toml +++ b/query-projector-traits/Cargo.toml @@ -15,7 +15,7 @@ failure = "~0.1" failure_derive = "~0.1" [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.edn] diff --git a/query-projector/Cargo.toml b/query-projector/Cargo.toml index 822e500a..bae4a00b 100644 --- a/query-projector/Cargo.toml +++ b/query-projector/Cargo.toml @@ -11,7 +11,7 @@ failure = "~0.1" indexmap = "~1.9" [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.core_traits] diff --git a/query-pull/Cargo.toml b/query-pull/Cargo.toml index abe31c4e..bc9f0dcc 100644 --- a/query-pull/Cargo.toml +++ b/query-pull/Cargo.toml @@ -13,7 +13,7 @@ failure = "~0.1" path = "../query-pull-traits" [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.edn] diff --git a/query-sql/Cargo.toml b/query-sql/Cargo.toml index 81a562eb..490c6f0d 100644 --- a/query-sql/Cargo.toml +++ b/query-sql/Cargo.toml @@ -4,7 +4,7 @@ version = "0.0.2" workspace = ".." [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.edn] diff --git a/sql/Cargo.toml b/sql/Cargo.toml index 2893b2bb..ee8f8e38 100644 --- a/sql/Cargo.toml +++ b/sql/Cargo.toml @@ -11,7 +11,7 @@ failure = "~0.1" ordered-float = "~2.8" [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.core_traits] diff --git a/tolstoy-traits/Cargo.toml b/tolstoy-traits/Cargo.toml index 0ea6b071..e7b23bc9 100644 --- a/tolstoy-traits/Cargo.toml +++ b/tolstoy-traits/Cargo.toml @@ -19,7 +19,7 @@ serde_json = "~1.0" uuid = { version = "~1.0" } [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.db_traits] diff --git a/tolstoy/Cargo.toml b/tolstoy/Cargo.toml index f12388d7..ab558b92 100644 --- a/tolstoy/Cargo.toml +++ b/tolstoy/Cargo.toml @@ -25,7 +25,7 @@ lazy_static = "~1.4" uuid = { version = "~1.0", features = ["v4", "serde"] } [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.edn] diff --git a/tools/cli/Cargo.toml b/tools/cli/Cargo.toml index 5bf10e9d..f03fa8de 100644 --- a/tools/cli/Cargo.toml +++ b/tools/cli/Cargo.toml @@ -29,14 +29,14 @@ lazy_static = "~1.4" linefeed = "~0.6" log = "~0.4" tabwriter = "~1.2" -tempfile = "~3.2" +tempfile = "~3.5" termion = "~1.5" time = "~0.3" bytes = { version = "1.0.1", features = ["serde"] } hex = "0.4.3" [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.mentat] diff --git a/transaction/Cargo.toml b/transaction/Cargo.toml index d76dcfd7..49446b5c 100644 --- a/transaction/Cargo.toml +++ b/transaction/Cargo.toml @@ -10,7 +10,7 @@ sqlcipher = ["rusqlite/sqlcipher"] failure = "~0.1" [dependencies.rusqlite] -version = "~0.26" +version = "~0.29" features = ["limits", "bundled"] [dependencies.edn]