[package]
edition = "2021"
name = "vex-algoswitch"
version = "1.7.0"
authors = ["VEX protocol Provnai <contact@provnai.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Self-optimizing algorithm selection runtime with smart pattern detection"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/provnai/vex"
[lib]
name = "vex_algoswitch"
path = "src/lib.rs"
[[example]]
name = "bench"
path = "examples/bench.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[bench]]
name = "benches"
path = "benches/benches.rs"
harness = false
[[bench]]
name = "cache"
path = "benches/cache.rs"
harness = false
[[bench]]
name = "pattern"
path = "benches/pattern.rs"
harness = false
[[bench]]
name = "sort"
path = "benches/sort.rs"
harness = false
[dependencies.once_cell]
version = "1.19"
[dev-dependencies.criterion]
version = "0.5"