From 7328cb660e47d0337b7b87503e3e7a12a7d872b2 Mon Sep 17 00:00:00 2001 From: Rex Raphael Date: Tue, 25 Jul 2023 16:33:26 -0500 Subject: [PATCH] fix: fixed nested config bug --- Cargo.lock | 2 +- crates/north-derives/Cargo.toml | 2 +- crates/north/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b632e4c..b4dcef6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2080,7 +2080,7 @@ dependencies = [ name = "north-derives" version = "0.1.1" dependencies = [ - "north-common 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "north-common 0.0.3", "poem", "quote 1.0.32", "syn 1.0.99", diff --git a/crates/north-derives/Cargo.toml b/crates/north-derives/Cargo.toml index 6a5b577..5bf0438 100644 --- a/crates/north-derives/Cargo.toml +++ b/crates/north-derives/Cargo.toml @@ -25,4 +25,4 @@ syn = {version="1.0", features=["full","fold"]} quote = "1.0.8" poem = { workspace = true } -north-common = { version = "0.0.3" } \ No newline at end of file +north-common = { workspace = true } \ No newline at end of file diff --git a/crates/north/Cargo.toml b/crates/north/Cargo.toml index 35dde2e..e89aff8 100644 --- a/crates/north/Cargo.toml +++ b/crates/north/Cargo.toml @@ -39,7 +39,7 @@ serde_json = { workspace = true } serde_yaml = { workspace = true } north-common = { version = "0.0.3" } -north-derives = { version = "0.1.0" } +north-derives = { version = "0.1.1" } hyper = { version = "0.14", optional = true } poem = { version = "1.3.57", optional = true, features = ["sse", "compression", "cookie", "embed", "opentelemetry", "tokio-metrics", "tower-compat", "websocket", "acme", "redis-session", "prometheus", "rustls"] }