[package] name = "page_rank" version = "0.2.0" edition = "2018" description = "A graph and pagerank algorithm implementation in Rust" authors = ["Arlo Filley "] exclude = [".vscode/", ".DS_STORE"] license = "MIT" keywords = ["page_rank"] readme = "ReadMe.md" repository = "https://git.arlofilley.com/Arlo/PageRank" [[bin]] name = "page_ranker" path = "src/bin/main.rs" [lib] name = "page_rank" path = "src/lib/lib.rs" [dependencies]