PageRank/Cargo.toml

25 lines
461 B
TOML
Raw Permalink Normal View History

2024-05-02 11:59:51 +01:00
[package]
name = "page_rank"
version = "0.1.0"
edition = "2018"
2024-05-02 11:59:51 +01:00
2024-05-02 19:12:41 +01:00
description = "A graph and pagerank algorithm implementation in Rust"
authors = ["Arlo Filley <arlofilley@gmail.com>"]
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"
2024-05-02 11:59:51 +01:00
[dependencies]