From 5e62fb6cbf04a366be91b94fa267dc3d43f2180f Mon Sep 17 00:00:00 2001 From: Friedel Ziegelmayer Date: Tue, 29 Oct 2024 13:38:54 +0100 Subject: [PATCH] refactor: move ProtocolHandler docs to iroh-docs (#2859) Depends on https://github.com/n0-computer/iroh-docs/pull/3 --- Cargo.lock | 4 ++-- Cargo.toml | 1 + deny.toml | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2e4e4bff74..318b8ce138 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2697,8 +2697,7 @@ dependencies = [ [[package]] name = "iroh-docs" version = "0.27.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb2c8bc1fe680549dd9776031be30e68663884026f71a914aab7108e0b8f8ce4" +source = "git+https://github.com/n0-computer/iroh-docs?branch=main#16bc7fe4c7dee1b1b88f54390856c3fafa3d7656" dependencies = [ "anyhow", "async-channel", @@ -2715,6 +2714,7 @@ dependencies = [ "iroh-gossip", "iroh-metrics", "iroh-net", + "iroh-router", "lru", "num_enum", "postcard", diff --git a/Cargo.toml b/Cargo.toml index eb7ea71768..1cb098e60b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,3 +54,4 @@ iroh-router = { path = "./iroh-router" } iroh-blobs = { git = "https://github.com/n0-computer/iroh-blobs", branch = "main" } iroh-gossip = { git = "https://github.com/n0-computer/iroh-gossip", branch = "main" } +iroh-docs = { git = "https://github.com/n0-computer/iroh-docs", branch = "main" } diff --git a/deny.toml b/deny.toml index c7fb823266..f62c19d428 100644 --- a/deny.toml +++ b/deny.toml @@ -39,4 +39,5 @@ ignore = [ allow-git = [ "https://github.com/n0-computer/iroh-blobs.git", "https://github.com/n0-computer/iroh-gossip.git", + "https://github.com/n0-computer/iroh-docs.git", ]