graphops 0.1.1

Graph operators: PageRank/PPR/walks/reachability/node2vec/betweenness.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.80"
name = "graphops"
version = "0.1.1"
authors = ["Arc <attobop@gmail.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Graph operators: PageRank/PPR/walks/reachability/node2vec/betweenness."
homepage = "https://github.com/arclabs561/graphops"
documentation = "https://docs.rs/graphops"
readme = "README.md"
keywords = [
    "pagerank",
    "ppr",
    "node2vec",
    "graphs",
]
categories = [
    "algorithms",
    "mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/arclabs561/graphops"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = []
parallel = ["dep:rayon"]
petgraph = ["dep:petgraph"]
serde = ["dep:serde"]

[lib]
name = "graphops"
path = "src/lib.rs"

[[example]]
name = "pagerank"
path = "examples/pagerank.rs"

[[test]]
name = "invariants"
path = "tests/invariants.rs"

[dependencies.ordered-float]
version = "4.2"

[dependencies.petgraph]
version = "0.6"
optional = true

[dependencies.rand]
version = "0.9"

[dependencies.rand_chacha]
version = "0.9"

[dependencies.rand_distr]
version = "0.5"

[dependencies.rayon]
version = "1.10"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.criterion]
version = "0.7"

[dev-dependencies.proptest]
version = "1.9"

[dev-dependencies.stats_alloc]
version = "0.1"