diff --git a/Cargo.toml b/Cargo.toml index 4b3a5e79e..ffba0e835 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ rustc_version = "0.2" [dependencies] chrono = "0.4" -failure = "0.1.1" +failure = "0.1.2" lazy_static = "0.2" time = "0.1" uuid = { version = "0.5", features = ["v4", "serde"] } diff --git a/core/Cargo.toml b/core/Cargo.toml index 38a8eed8c..c3dbdf37b 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -6,7 +6,7 @@ workspace = ".." [dependencies] chrono = { version = "0.4", features = ["serde"] } enum-set = "0.0.7" -failure = "0.1.1" +failure = "0.1.2" indexmap = "1" ordered-float = { version = "0.5", features = ["serde"] } uuid = { version = "0.5", features = ["v4", "serde"] } diff --git a/db-traits/Cargo.toml b/db-traits/Cargo.toml index 6f1b5bc02..5682a8341 100644 --- a/db-traits/Cargo.toml +++ b/db-traits/Cargo.toml @@ -11,8 +11,8 @@ path = "lib.rs" sqlcipher = ["rusqlite/sqlcipher"] [dependencies] -failure = "0.1.1" -failure_derive = "0.1.1" +failure = "0.1.2" +failure_derive = "0.1.2" [dependencies.edn] path = "../edn" diff --git a/db/Cargo.toml b/db/Cargo.toml index faaea93a2..62d22ab7d 100644 --- a/db/Cargo.toml +++ b/db/Cargo.toml @@ -9,7 +9,7 @@ sqlcipher = ["rusqlite/sqlcipher"] syncable = ["serde", "serde_json", "serde_derive"] [dependencies] -failure = "0.1.1" +failure = "0.1.2" indexmap = "1" itertools = "0.7" lazy_static = "0.2" diff --git a/public-traits/Cargo.toml b/public-traits/Cargo.toml index 92bc255de..b9f591df7 100644 --- a/public-traits/Cargo.toml +++ b/public-traits/Cargo.toml @@ -13,8 +13,8 @@ sqlcipher = ["rusqlite/sqlcipher"] syncable = ["tolstoy_traits"] [dependencies] -failure = "0.1.1" -failure_derive = "0.1.1" +failure = "0.1.2" +failure_derive = "0.1.2" [dependencies.rusqlite] version = "0.13" diff --git a/query-algebrizer-traits/Cargo.toml b/query-algebrizer-traits/Cargo.toml index 008ee2679..02ba1e043 100644 --- a/query-algebrizer-traits/Cargo.toml +++ b/query-algebrizer-traits/Cargo.toml @@ -8,8 +8,8 @@ name = "query_algebrizer_traits" path = "lib.rs" [dependencies] -failure = "0.1.1" -failure_derive = "0.1.1" +failure = "0.1.2" +failure_derive = "0.1.2" [dependencies.edn] path = "../edn" diff --git a/query-algebrizer/Cargo.toml b/query-algebrizer/Cargo.toml index cfc28a9bd..aa653adf5 100644 --- a/query-algebrizer/Cargo.toml +++ b/query-algebrizer/Cargo.toml @@ -4,7 +4,7 @@ version = "0.0.1" workspace = ".." [dependencies] -failure = "0.1.1" +failure = "0.1.2" [dependencies.edn] path = "../edn" diff --git a/query-projector-traits/Cargo.toml b/query-projector-traits/Cargo.toml index ebdbc366d..63edcc1d7 100644 --- a/query-projector-traits/Cargo.toml +++ b/query-projector-traits/Cargo.toml @@ -11,8 +11,8 @@ path = "lib.rs" sqlcipher = ["rusqlite/sqlcipher"] [dependencies] -failure = "0.1.1" -failure_derive = "0.1.1" +failure = "0.1.2" +failure_derive = "0.1.2" [dependencies.rusqlite] version = "0.13" diff --git a/query-projector/Cargo.toml b/query-projector/Cargo.toml index cc2f49eb4..7d4cb4c9d 100644 --- a/query-projector/Cargo.toml +++ b/query-projector/Cargo.toml @@ -7,7 +7,7 @@ workspace = ".." sqlcipher = ["rusqlite/sqlcipher"] [dependencies] -failure = "0.1.1" +failure = "0.1.2" indexmap = "1" [dependencies.rusqlite] diff --git a/query-pull-traits/Cargo.toml b/query-pull-traits/Cargo.toml index 9bb793ee5..021a7ded5 100644 --- a/query-pull-traits/Cargo.toml +++ b/query-pull-traits/Cargo.toml @@ -8,8 +8,8 @@ name = "query_pull_traits" path = "lib.rs" [dependencies] -failure = "0.1.1" -failure_derive = "0.1.1" +failure = "0.1.2" +failure_derive = "0.1.2" [dependencies.core_traits] path = "../core-traits" diff --git a/query-pull/Cargo.toml b/query-pull/Cargo.toml index ece464bd9..c89e7bd24 100644 --- a/query-pull/Cargo.toml +++ b/query-pull/Cargo.toml @@ -7,7 +7,7 @@ workspace = ".." sqlcipher = ["rusqlite/sqlcipher"] [dependencies] -failure = "0.1.1" +failure = "0.1.2" [dependencies.query_pull_traits] path = "../query-pull-traits" diff --git a/sql-traits/Cargo.toml b/sql-traits/Cargo.toml index 211e998c7..9762e0bcf 100644 --- a/sql-traits/Cargo.toml +++ b/sql-traits/Cargo.toml @@ -8,5 +8,5 @@ name = "sql_traits" path = "lib.rs" [dependencies] -failure = "0.1.1" -failure_derive = "0.1.1" +failure = "0.1.2" +failure_derive = "0.1.2" diff --git a/sql/Cargo.toml b/sql/Cargo.toml index b6786030c..5eee52c78 100644 --- a/sql/Cargo.toml +++ b/sql/Cargo.toml @@ -7,7 +7,7 @@ workspace = ".." sqlcipher = ["rusqlite/sqlcipher"] [dependencies] -failure = "0.1.1" +failure = "0.1.2" ordered-float = "0.5" [dependencies.rusqlite] diff --git a/tolstoy-traits/Cargo.toml b/tolstoy-traits/Cargo.toml index e4d29c2e8..cc7f7b04a 100644 --- a/tolstoy-traits/Cargo.toml +++ b/tolstoy-traits/Cargo.toml @@ -11,8 +11,8 @@ path = "lib.rs" sqlcipher = ["rusqlite/sqlcipher"] [dependencies] -failure = "0.1.1" -failure_derive = "0.1.1" +failure = "0.1.2" +failure_derive = "0.1.2" hyper = "0.11" serde_json = "1.0" uuid = { version = "0.5" } diff --git a/tolstoy/Cargo.toml b/tolstoy/Cargo.toml index 12e9e9db1..f827c9b20 100644 --- a/tolstoy/Cargo.toml +++ b/tolstoy/Cargo.toml @@ -8,7 +8,7 @@ authors = ["Grisha Kruglov "] sqlcipher = ["rusqlite/sqlcipher"] [dependencies] -failure = "0.1.1" +failure = "0.1.2" futures = "0.1" hyper = "0.11" log = "0.4" diff --git a/tools/cli/Cargo.toml b/tools/cli/Cargo.toml index 2bdd3eacb..2d8951a7c 100644 --- a/tools/cli/Cargo.toml +++ b/tools/cli/Cargo.toml @@ -22,8 +22,8 @@ test = false combine = "2.2.2" dirs = "1.0.3" env_logger = "0.5" -failure = "0.1.1" -failure_derive = "0.1.1" +failure = "0.1.2" +failure_derive = "0.1.2" getopts = "0.2" lazy_static = "0.2" linefeed = "0.5" diff --git a/transaction/Cargo.toml b/transaction/Cargo.toml index 48ccdb0b7..c452d1baf 100644 --- a/transaction/Cargo.toml +++ b/transaction/Cargo.toml @@ -7,7 +7,7 @@ workspace = ".." sqlcipher = ["rusqlite/sqlcipher"] [dependencies] -failure = "0.1.1" +failure = "0.1.2" [dependencies.edn] path = "../edn"