find the most "fundamental" notes in the graph with PageRank (also with Katz centrality but I commented that out)

This commit is contained in:
2023-12-23 16:02:05 -05:00
parent a6e5cc9c6e
commit a2e13914f0
5 changed files with 265 additions and 10 deletions

View File

@@ -10,12 +10,15 @@ ahash = { version = "0.8.6", features = ["serde"] }
async-channel = "2.1.1"
crossterm = "0.27.0"
error-stack = "0.4.1"
itertools = "0.12.0"
pathdiff = "0.2.1"
petgraph = { version = "0.6.4", features = ["serde-1"] }
postcard = { version = "1.0.8", features = ["alloc", "use-std"] }
ratatui = "0.24.0"
regex = "1.10.2"
rustworkx-core = "0.13.2"
serde = { version = "1.0.193", features = ["derive"] }
simple-pagerank = "0.2.0"
thiserror = "1.0.51"
tokio = { version = "1.35.1", features = ["rt-multi-thread", "macros", "fs"] }
tracing = "0.1.40"