[[bench]]
harness = false
name = "odds_benchmarks"
path = "benches/odds_benchmarks.rs"
[dependencies.num-integer]
version = "0.1"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"
[dev-dependencies.proptest]
version = "1.4"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "library_integration"
path = "examples/library_integration.rs"
[[example]]
name = "odds_calculator"
path = "examples/odds_calculator.rs"
[[example]]
name = "sports_betting"
path = "examples/sports_betting.rs"
[lib]
name = "odds_converter"
path = "src/lib.rs"
[package]
authors = ["Alexander Michaud <email@alexandermichaud.tech>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["mathematics", "parser-implementations"]
description = "A fast, accurate Rust library for converting between American, Decimal, and Fractional betting odds formats"
documentation = "https://docs.rs/odds_converter"
edition = "2021"
homepage = "https://github.com/armichaud/odds_converter"
include = ["src/**/*", "tests/**/*", "benches/**/*", "examples/**/*", "Cargo.toml", "README.md", "LICENSE"]
keywords = ["betting", "odds", "gambling", "conversion", "probability"]
license = "MIT"
name = "odds_converter"
readme = "README.md"
repository = "https://github.com/armichaud/odds_converter"
rust-version = "1.81.0"
version = "0.1.0"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"