pons-dds 0.1.1

Pure-Rust double dummy solver for contract bridge
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"
rust-version = "1.88"
name = "pons-dds"
version = "0.1.1"
authors = ["Chen-Pang He (https://jdh8.org)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust double dummy solver for contract bridge"
readme = "README.md"
keywords = [
    "bridge",
    "double-dummy",
]
categories = ["game-development"]
license = "Apache-2.0"
repository = "https://github.com/jdh8/pons-dds"

[features]
profiling = []

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

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

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

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

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

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

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

[dependencies.arrayvec]
version = "0.7"

[dependencies.bitflags]
version = "2"

[dependencies.contract-bridge]
version = "0.1"

[dependencies.rayon]
version = "1"

[dependencies.thiserror]
version = "2"

[dev-dependencies.contract-bridge]
version = "0.1"
features = ["rand"]

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

[dev-dependencies.rand]
version = "0.10"

[profile.bench]
inherits = "release"

[profile.release]
lto = "fat"
codegen-units = 1
debug = "line-tables-only"