[[bench]]
harness = false
name = "advanced_algorithms"
path = "benches/advanced_algorithms.rs"
[[bench]]
name = "advanced_benchmarks"
path = "benches/advanced_benchmarks.rs"
[[bench]]
name = "advanced_large_graph_stress"
path = "benches/advanced_large_graph_stress.rs"
[[bench]]
harness = false
name = "benchmark_runner"
path = "benches/benchmark_runner.rs"
[[bench]]
harness = false
name = "graph_benchmarks"
path = "benches/graph_benchmarks.rs"
[[bench]]
harness = false
name = "large_graph_stress"
path = "benches/large_graph_stress.rs"
[[bench]]
harness = false
name = "memory_benchmarks"
path = "benches/memory_benchmarks.rs"
[[bench]]
name = "networkx_igraph_comparison"
path = "benches/networkx_igraph_comparison.rs"
[[bench]]
harness = false
name = "performance_optimizations"
path = "benches/performance_optimizations.rs"
[[bench]]
harness = false
name = "performance_regression"
path = "benches/performance_regression.rs"
[dependencies.itertools]
version = "0.14"
[dependencies.num_cpus]
version = "1.17.0"
[dependencies.ordered-float]
version = "5.1.0"
[dependencies.oxicode]
features = ["serde", "simd"]
version = "0.1.1"
[dependencies.parking_lot]
version = "0.12.5"
[dependencies.petgraph]
version = "0.8.3"
[dependencies.scirs2-core]
features = ["parallel", "simd", "random", "array"]
version = "0.1.2"
[dependencies.scirs2-sparse]
version = "0.1.2"
[dependencies.serde]
features = ["derive", "derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.sysinfo]
version = "0.37.2"
[dependencies.thiserror]
version = "2.0.17"
[dev-dependencies.approx]
version = "0.5.1"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.8.1"
[dev-dependencies.ctor]
version = "0.6"
[dev-dependencies.num_cpus]
version = "1.17.0"
[dev-dependencies.tempfile]
version = "3.24.0"
[[example]]
name = "advanced_final_validation"
path = "examples/advanced_final_validation.rs"
[[example]]
name = "advanced_numerical_validation_demo"
path = "examples/advanced_numerical_validation_demo.rs"
[[example]]
name = "advanced_validation_simple"
path = "examples/advanced_validation_simple.rs"
[[example]]
name = "graph_advanced_demo"
path = "examples/graph_advanced_demo.rs"
[[example]]
name = "graph_demo"
path = "examples/graph_demo.rs"
[[example]]
name = "hypergraph_demo"
path = "examples/hypergraph_demo.rs"
[[example]]
name = "infomap_demo"
path = "examples/infomap_demo.rs"
[[example]]
name = "refactor_demo"
path = "examples/refactor_demo.rs"
[[example]]
name = "temporal_graph_demo"
path = "examples/temporal_graph_demo.rs"
[[example]]
name = "test_k_core"
path = "examples/test_k_core.rs"
[features]
advanced_centrality = []
benchmarks = []
compression = []
default = ["std", "sysinfo"]
experimental_algorithms = ["unstable"]
extra_formats = []
full = ["parallel", "simd", "advanced_centrality", "extra_formats", "benchmarks", "profiling", "validation", "networkx_compat"]
gpu = ["scirs2-core/gpu"]
igraph_compat = []
networkx_compat = []
neural_networks = []
parallel = ["scirs2-core/parallel"]
profiling = []
simd = ["scirs2-core/simd"]
std = []
sysinfo = []
unstable = []
validation = []
[lib]
name = "scirs2_graph"
path = "src/lib.rs"
[lints.clippy]
expect_used = "allow"
unwrap_used = "warn"
[lints.rust]
dead_code = "allow"
mismatched_lifetime_syntaxes = "allow"
unknown_lints = "allow"
unpredictable_function_pointer_comparisons = "allow"
unused_imports = "allow"
unused_mut = "allow"
unused_variables = "allow"
[package]
authors = ["COOLJAPAN OU (Team KitaSan)"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["science", "mathematics", "algorithms"]
description = "Graph processing module for SciRS2 (scirs2-graph)"
edition = "2021"
keywords = ["graph", "network", "scientific", "ai", "machine-learning"]
license = "MIT OR Apache-2.0"
name = "scirs2-graph"
readme = "README.md"
repository = "https://github.com/cool-japan/scirs"
version = "0.1.2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "stress_tests"
path = "tests/stress_tests.rs"