webgraph-algo 0.6.2

Algorithms for the Rust port of the WebGraph framework (http://webgraph.di.unimi.it/).
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 = "2024"
rust-version = "1.85"
name = "webgraph-algo"
version = "0.6.2"
authors = [
    "Tommaso Fontana <tommaso.fontana.96@gmail.com>",
    "Matteo Dell'Acqua <dellacqua.matteo99@gmail.com>",
    "Sebastiano Vigna <sebastiano.vigna@unimi.it>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Algorithms for the Rust port of the WebGraph framework (http://webgraph.di.unimi.it/)."
readme = "README.md"
keywords = [
    "graph",
    "compression",
    "codes",
    "webgraph",
]
categories = [
    "compression",
    "data-structures",
    "algorithms",
]
license = "Apache-2.0 OR LGPL-2.1-or-later"
repository = "https://github.com/vigna/webgraph-rs/"
resolver = "2"

[features]
slow_tests = []

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

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

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

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

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

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

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

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

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

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

[dependencies.anyhow]
version = "1.0.79"
features = ["backtrace"]

[dependencies.card-est-array]
version = "0.2.1"

[dependencies.crossbeam-utils]
version = "0.8.21"

[dependencies.dsi-progress-logger]
version = "0.8.2"

[dependencies.epserde]
version = "0.12.0"

[dependencies.kahan]
version = "0.1.4"

[dependencies.lender]
version = "0.6.0"

[dependencies.log]
version = "0.4.22"

[dependencies.no-break]
version = "0.1.2"

[dependencies.nonmax]
version = "0.5.5"

[dependencies.num_cpus]
version = "1.16.0"

[dependencies.predicates]
version = "3.1.2"

[dependencies.rand]
version = "0.10.0"

[dependencies.rayon]
version = "1.10.0"

[dependencies.sux]
version = "0.12.2"
features = [
    "epserde",
    "rayon",
    "mmap",
]

[dependencies.sync-cell-slice]
version = "0.9.12"

[dependencies.thiserror]
version = "2.0.12"

[dependencies.value-traits]
version = "0.2.0"

[dependencies.webgraph]
version = "0.6.1"

[dev-dependencies.tempfile]
version = "3.10.1"