Replaced DHT with custom one! Lets see if it works

This commit is contained in:
Igor Katson 2021-07-12 19:55:23 +01:00
parent 5c41796485
commit 2eabebb5c3
14 changed files with 192 additions and 350 deletions

View file

@ -1,7 +1,7 @@
use std::{collections::HashSet, str::FromStr, time::Duration};
use std::{collections::HashSet, str::FromStr};
use anyhow::Context;
use dht::{dht::Dht, id20::Id20};
use dht::{Dht, Id20};
use tokio_stream::StreamExt;
#[tokio::main]