hpdg 0.1.0

Rust-first data generator for competitive programming and OI workflows.
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 = "hpdg"
version = "0.1.0"
build = false
exclude = [
    ".github/**",
    ".gitignore",
    "notes.txt",
    "python/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust-first data generator for competitive programming and OI workflows."
documentation = "https://docs.rs/hpdg"
readme = "README.md"
keywords = [
    "oi",
    "generator",
    "testdata",
    "graph",
    "cyaron",
]
categories = [
    "algorithms",
    "development-tools::testing",
]
license = "MIT"
repository = "https://github.com/SuperKevinZhou/hpdg"

[features]
c-bindings = []
compare = []
core = []
default = [
    "proc",
    "parallel",
    "io",
    "testcase",
    "graph",
    "math",
    "sequence",
    "vector",
    "string",
    "polygon",
    "query",
    "compare",
    "utils",
    "core",
    "rng",
    "traits",
    "error",
]
error = []
graph = []
io = []
math = []
parallel = []
polygon = []
proc = []
python-bindings = ["pyo3"]
query = []
rng = []
sequence = []
string = []
testcase = []
traits = []
utils = []
vector = []

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

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

[[bench]]
name = "basic"
path = "benches/basic.rs"
harness = false

[dependencies.getrandom]
version = "0.2"
features = ["js"]

[dependencies.pyo3]
version = "0.21"
features = [
    "extension-module",
    "abi3-py38",
]
optional = true

[dependencies.rand]
version = "0.9.2"

[dependencies.thiserror]
version = "1.0.69"

[dev-dependencies.criterion]
version = "0.5"