openpql-runner 0.1.3

A high-performance Rust implementation of Poker Query Language (PQL), enabling SQL-like queries for poker analysis and calculations. This project is a spiritual successor to the original Java implementation developed by Odds Oracle.
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 = "openpql-runner"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance Rust implementation of Poker Query Language (PQL), enabling SQL-like queries for poker analysis and calculations. This project is a spiritual successor to the original Java implementation developed by Odds Oracle."
homepage = "https://github.com/solve-poker/Poker-Query-Language"
readme = "README.md"
keywords = [
    "GTO",
    "PQL",
    "holdem",
    "poker",
    "shortdeck",
]
license = "MIT"
repository = "https://github.com/solve-poker/Poker-Query-Language"

[features]
cli = ["clap"]

[lib]
name = "opql"
path = "src/lib.rs"
doctest = false

[[bin]]
name = "opql"
path = "src/cli/main.rs"
required-features = ["cli"]

[[test]]
name = "functions"
path = "tests/functions/main.rs"

[dependencies.bitflags]
version = "2.11.1"

[dependencies.clap]
version = "4.6.1"
features = ["derive"]
optional = true

[dependencies.derive_more]
version = "2"
features = [
    "full",
    "display",
    "std",
]

[dependencies.openpql-core]
version = "0.1.3"

[dependencies.openpql-macro]
version = "0.1.3"

[dependencies.openpql-pql-parser]
version = "0.1.3"

[dependencies.openpql-prelude]
version = "0.1.3"

[dependencies.openpql-range-parser]
version = "0.1.3"

[dependencies.rand]
version = "0.10.1"

[dependencies.smallvec]
version = "1.15.1"

[dev-dependencies.itertools]
version = "0.14.0"

[dev-dependencies.openpql-prelude]
version = "0.1.3"
features = ["quickcheck"]

[dev-dependencies.quickcheck]
version = "1.1.0"
features = []

[dev-dependencies.quickcheck_macros]
version = "1.2.0"

[lints.clippy]
module_inception = "allow"

[lints.clippy.absolute_paths]
level = "warn"
priority = 10

[lints.clippy.enum_variant_names]
level = "allow"
priority = 10

[lints.clippy.missing_errors_doc]
level = "allow"
priority = 10

[lints.clippy.module_name_repetitions]
level = "allow"
priority = 10

[lints.clippy.must_use_candidate]
level = "allow"
priority = 10

[lints.clippy.needless_range_loop]
level = "allow"
priority = 10

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

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

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