[package]
edition = "2024"
rust-version = "1.85"
name = "rust-igraph"
version = "0.0.1-alpha.0"
authors = ["rust-igraph contributors"]
build = false
include = [
"/src/**/*.rs",
"/Cargo.toml",
"/README.md",
"/LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust port of the igraph network analysis library (alpha — Phase 0)."
homepage = "https://Totoro-jam.github.io/rust-igraph"
documentation = "https://docs.rs/rust-igraph"
readme = "README.md"
keywords = [
"graph",
"network",
"igraph",
"algorithm",
]
categories = [
"data-structures",
"science",
"mathematics",
]
license = "GPL-2.0-or-later"
repository = "https://github.com/Totoro-jam/rust-igraph"
[features]
default = []
oracle-tests = []
proptest-harness = []
[lib]
name = "rust_igraph"
path = "src/lib.rs"
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"
[profile.release]
lto = "thin"
codegen-units = 1