From a0cfe07854367ce6ee5476c2b7cfd49e37b6276b Mon Sep 17 00:00:00 2001 From: Rex Raphael Date: Wed, 3 Jan 2024 09:30:01 -0600 Subject: [PATCH] fix: added file options arg source --- Cargo.toml | 4 ++-- crates/north-common/Cargo.toml | 2 +- crates/north-config/Cargo.toml | 2 +- crates/north-consul/Cargo.toml | 2 +- crates/north-derives/Cargo.toml | 2 +- crates/north-service/Cargo.toml | 2 +- crates/north/Cargo.toml | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f78c5f5..9177799 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ members = [ ] [workspace.dependencies] -itertools = "0.11" +itertools = "0.12.0" async-trait = "0.1" tokio = { version = "1.18", features = ["full"] } futures = "0.3" @@ -28,7 +28,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" serde_derive = "1" serde_yaml = "0.9" -mockall = "0.11" +mockall = "0.12.1" rstest = "0.18.1" rusty-hook = "^0.11" log = "0.4" diff --git a/crates/north-common/Cargo.toml b/crates/north-common/Cargo.toml index 7d06685..203c687 100644 --- a/crates/north-common/Cargo.toml +++ b/crates/north-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "north-common" -workspace.version = true +version.workspace = true edition = "2021" description = "Common logic used in North Microservice Framework" readme = "README.md" diff --git a/crates/north-config/Cargo.toml b/crates/north-config/Cargo.toml index b5325bf..588ce0c 100644 --- a/crates/north-config/Cargo.toml +++ b/crates/north-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "north-config" -workspace.version = true +version.workspace = true edition = "2021" authors = ["Rex Raphael "] description = "North config is a multi source configuration crate designed as part of the North Microservice Framework" diff --git a/crates/north-consul/Cargo.toml b/crates/north-consul/Cargo.toml index 5991b5f..ba1b012 100644 --- a/crates/north-consul/Cargo.toml +++ b/crates/north-consul/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "north-consul" -workspace.version = true +version.workspace = true edition = "2021" authors = ["Rex Raphael ", "Andrew Useckas ", "Stu Small ", "YoungKing ", "Pierre Souchay ", "Tomer Shalev "] description = "Rust client libray for Consul HTTP API" diff --git a/crates/north-derives/Cargo.toml b/crates/north-derives/Cargo.toml index 4366ca6..9a2fdd0 100644 --- a/crates/north-derives/Cargo.toml +++ b/crates/north-derives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "north-derives" -workspace.version = true +version.workspace = true edition = "2021" authors = ["Rex Raphael "] description = "North config is a multi source configuration crate designed as part of the North Microservice Framework" diff --git a/crates/north-service/Cargo.toml b/crates/north-service/Cargo.toml index 6050cd0..fcc0a5e 100644 --- a/crates/north-service/Cargo.toml +++ b/crates/north-service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "north-service" -workspace.version = true +version.workspace = true edition = "2021" authors = ["Rex Raphael "] description = "Service discovery and registry for North Microservice Framework" diff --git a/crates/north/Cargo.toml b/crates/north/Cargo.toml index 06d47a3..9dd2f07 100644 --- a/crates/north/Cargo.toml +++ b/crates/north/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "north" -workspace.version = true +version.workspace = true edition = "2021" authors = ["Rex Raphael "] description = "North Microservice Framework"