Merge branch 'main' into feat/dns-policy

# Conflicts:
#	easytier/Cargo.toml
This commit is contained in:
Luna Yao
2026-04-18 11:23:51 +02:00
4 changed files with 18 additions and 8 deletions
+3 -5
View File
@@ -1,12 +1,10 @@
use core::cmp::Ordering;
use hashbrown::hash_map::{
Entry::{Occupied, Vacant},
HashMap,
};
use petgraph::{
algo::Measure,
visit::{EdgeRef as _, IntoEdges, VisitMap as _, Visitable},
visit::{EdgeRef, IntoEdges, VisitMap, Visitable},
};
use std::collections::HashMap;
use std::collections::hash_map::Entry::{Occupied, Vacant};
use std::{collections::BinaryHeap, hash::Hash};
/// `MinScored<K, T>` holds a score `K` and a scored object `T` in