dagre 0.1.1

A Rust port of dagre - directed graph layout using the Sugiyama method
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"
name = "dagre"
version = "0.1.1"
authors = ["kookyleo <kookyleo@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust port of dagre - directed graph layout using the Sugiyama method"
readme = "README.md"
keywords = [
    "graph",
    "layout",
    "dagre",
    "sugiyama",
    "diagram",
]
categories = [
    "algorithms",
    "visualization",
]
license = "Apache-2.0"
repository = "https://github.com/kookyleo/dagre-rs"

[package.metadata.upstream]
project = "@dagrejs/dagre"
repository = "https://github.com/dagrejs/dagre"
version = "3.0.1-pre"
commit = "4713b59bfa05af56cf58aa01e2027adf5d2dcf88"
commit_short = "4713b59"

[features]
default = ["json"]
json = [
    "serde",
    "serde_json",
]

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

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

[dependencies.log]
version = "0.4"

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

[dependencies.serde_json]
version = "1"
optional = true

[dev-dependencies.serde]
version = "1"
features = ["derive"]

[dev-dependencies.serde_json]
version = "1"