From 6ad5e0c69f81297dd1f444352eaf3f692a0c5326 Mon Sep 17 00:00:00 2001 From: Rex Raphael Date: Tue, 25 Jul 2023 15:43:51 -0500 Subject: [PATCH] fix: fixed nested config bug --- Cargo.lock | 6 ++---- crates/north/Cargo.toml | 6 +++--- examples/Cargo.lock | 6 ++---- 3 files changed, 7 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ddfa27b..25cebce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -103,8 +103,7 @@ checksum = "1485d4d2cc45e7b201ee3767015c96faa5904387c9d87c6efdd0fb511f12d305" [[package]] name = "aragog" version = "0.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9118b9fc532020b802fe8f76fd8f6c476db9be7c0a4e829abb577d610f770e7d" +source = "git+https://gitlab.com/juicycleff/aragog?branch=master#7382d8d40542b2dec422228fa81deb4640ec7573" dependencies = [ "aragog-macros", "arangors_lite", @@ -122,8 +121,7 @@ dependencies = [ [[package]] name = "aragog-macros" version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab48f7b5f09fada5c1c27665ccd552e31cc06405bf5526ddabca321868030436" +source = "git+https://gitlab.com/juicycleff/aragog?branch=master#7382d8d40542b2dec422228fa81deb4640ec7573" dependencies = [ "proc-macro-error", "proc-macro2 1.0.66", diff --git a/crates/north/Cargo.toml b/crates/north/Cargo.toml index 666e978..d29229b 100644 --- a/crates/north/Cargo.toml +++ b/crates/north/Cargo.toml @@ -46,7 +46,7 @@ poem = { version = "1.3.57", optional = true, features = ["sse", "compression", poem-openapi = { version = "3.0.0", features = ["swagger-ui"], optional = true } # Database -aragog = { version = "0.17", optional = true } +aragog = { git = "https://gitlab.com/juicycleff/aragog", branch = "master", optional = true } [dev-dependencies] mockall = { workspace = true } @@ -59,5 +59,5 @@ rusty-hook = { workspace = true } #features = ["prepush-hook", "run-for-all", "precommit-hook", "postmerge-hook", "run-cargo-clippy", "run-cargo-fmt"] -[patch.crates-io] -aragog = { git = "https://gitlab.com/juicycleff/aragog", branch = "master" } \ No newline at end of file +#[patch.crates-io] +#aragog = { git = "https://gitlab.com/juicycleff/aragog", branch = "master" } \ No newline at end of file diff --git a/examples/Cargo.lock b/examples/Cargo.lock index ba82d40..74aa01b 100644 --- a/examples/Cargo.lock +++ b/examples/Cargo.lock @@ -103,8 +103,7 @@ checksum = "1485d4d2cc45e7b201ee3767015c96faa5904387c9d87c6efdd0fb511f12d305" [[package]] name = "aragog" version = "0.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9118b9fc532020b802fe8f76fd8f6c476db9be7c0a4e829abb577d610f770e7d" +source = "git+https://gitlab.com/juicycleff/aragog?branch=master#7382d8d40542b2dec422228fa81deb4640ec7573" dependencies = [ "aragog-macros", "arangors_lite", @@ -122,8 +121,7 @@ dependencies = [ [[package]] name = "aragog-macros" version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab48f7b5f09fada5c1c27665ccd552e31cc06405bf5526ddabca321868030436" +source = "git+https://gitlab.com/juicycleff/aragog?branch=master#7382d8d40542b2dec422228fa81deb4640ec7573" dependencies = [ "proc-macro-error", "proc-macro2",