visgraph 0.1.0

Visualize Graphs as Images with one Function Call.
Documentation
[dependencies.fastrand]
version = "2.3.0"

[dependencies.fixedbitset]
version = "0.5.7"

[dependencies.petgraph]
features = []
version = "0.8.3"

[dependencies.resvg]
features = ["text", "system-fonts"]
optional = true
version = "0.45.1"

[dependencies.ryu]
version = "1.0.20"

[dependencies.thiserror]
version = "2.0.17"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.7.0"

[dev-dependencies.image]
version = "0.25.4"

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

[features]
default = []
img = ["resvg"]

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

[lints.clippy]
alloc_instead_of_core = "allow"
allow_attributes = "warn"
allow_attributes_without_reason = "warn"
doc_markdown = "warn"
manual_let_else = "warn"
match_same_arms = "warn"
needless_lifetimes = "allow"
nonstandard_macro_braces = "warn"
ptr_as_ptr = "warn"
ptr_cast_constness = "warn"
redundant_closure_for_method_calls = "warn"
redundant_else = "warn"
ref_as_ptr = "warn"
semicolon_if_nothing_returned = "warn"
std_instead_of_alloc = "allow"
std_instead_of_core = "allow"
too_long_first_doc_paragraph = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
undocumented_unsafe_blocks = "warn"
unwrap_or_default = "warn"

[lints.rust]
unsafe_code = "deny"
unsafe_op_in_unsafe_fn = "warn"
unused_qualifications = "warn"

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(docsrs_dep)"]
level = "warn"
priority = 0

[package]
authors = ["Raoul Luque <raoulsluque@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["visualization", "development-tools::debugging"]
description = "Visualize Graphs as Images with one Function Call."
documentation = "https://docs.rs/visgraph"
edition = "2021"
include = ["src/**", "assets/DejaVuSans.ttf", "Cargo.toml", "README.md", "examples/graph_to_svg.rs"]
keywords = ["visualization", "graphs", "networks"]
license = "MIT OR Apache-2.0"
name = "visgraph"
readme = "README.md"
repository = "https://github.com/raoulluque/visgraph"
rust-version = "1.68"
version = "0.1.0"

[profile.dev.package.resvg]
opt-level = 3