rez-next-solver 0.3.0

Intelligent dependency resolution with A* heuristic algorithms and 3-5x performance improvement
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 = "2021"
name = "rez-next-solver"
version = "0.3.0"
authors = ["LongHao <hal.long@outlook.com>"]
build = false
exclude = [
    "benches/",
    "examples/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Intelligent dependency resolution with A* heuristic algorithms and 3-5x performance improvement"
homepage = "https://github.com/loonghao/rez-next"
documentation = "https://docs.rs/rez-next-solver"
readme = "README.md"
keywords = [
    "solver",
    "dependency",
    "resolution",
    "algorithm",
    "rez",
]
categories = [
    "development-tools",
    "algorithms",
    "data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/loonghao/rez-next"

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

[[bin]]
name = "test_astar_simple"
path = "src/bin/test_astar_simple.rs"

[[bin]]
name = "test_astar_standalone"
path = "src/bin/test_astar_standalone.rs"

[dependencies.dashmap]
version = "6.1"

[dependencies.futures]
version = "0.3"

[dependencies.rayon]
version = "1.10"

[dependencies.regex]
version = "1.11"

[dependencies.rez-next-common]
version = "0.3.0"

[dependencies.rez-next-package]
version = "0.3.0"

[dependencies.rez-next-repository]
version = "0.3.0"

[dependencies.rez-next-version]
version = "0.3.0"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.smallvec]
version = "1.15"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
version = "1.45"
features = ["full"]

[dev-dependencies.tempfile]
version = "3.20"

[lints.clippy.complexity]
level = "warn"
priority = -1

[lints.clippy.correctness]
level = "deny"
priority = -1

[lints.clippy.perf]
level = "warn"
priority = -1

[lints.clippy.suspicious]
level = "deny"
priority = -1

[lints.rust]
ambiguous_glob_reexports = "warn"
dead_code = "warn"
deprecated = "warn"
irrefutable_let_patterns = "warn"
unexpected_cfgs = "warn"
unused_imports = "warn"
unused_mut = "warn"
unused_variables = "warn"