[package]
edition = "2021"
rust-version = "1.66"
name = "muxer"
version = "0.3.13"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic, multi-objective bandit-style routing primitives (windowed stats + Pareto selection)."
homepage = "https://github.com/arclabs561/muxer"
documentation = "https://docs.rs/muxer"
readme = "README.md"
keywords = [
"bandit",
"routing",
"multi-armed-bandit",
"pareto",
"multi-objective",
]
categories = [
"algorithms",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/arclabs561/muxer"
[package.metadata.docs.rs]
features = [
"serde",
"contextual",
]
[features]
contextual = ["dep:rand"]
default = ["stochastic"]
serde = ["dep:serde"]
stochastic = [
"dep:rand",
"dep:rand_distr",
]
[lib]
name = "muxer"
path = "src/lib.rs"
[[example]]
name = "ad_auction_harness"
path = "examples/ad_auction_harness.rs"
[[example]]
name = "bqcd_calibrated"
path = "examples/bqcd_calibrated.rs"
[[example]]
name = "bqcd_sampling"
path = "examples/bqcd_sampling.rs"
[[example]]
name = "contextual_propensity_logging"
path = "examples/contextual_propensity_logging.rs"
[[example]]
name = "contextual_router"
path = "examples/contextual_router.rs"
[[example]]
name = "coverage_autotune"
path = "examples/coverage_autotune.rs"
[[example]]
name = "decision_unified"
path = "examples/decision_unified.rs"
[[example]]
name = "detector_calibration"
path = "examples/detector_calibration.rs"
[[example]]
name = "detector_inertia"
path = "examples/detector_inertia.rs"
[[example]]
name = "deterministic_router"
path = "examples/deterministic_router.rs"
[[example]]
name = "end_to_end_router"
path = "examples/end_to_end_router.rs"
[[example]]
name = "exp3ix_router"
path = "examples/exp3ix_router.rs"
[[example]]
name = "fraud_scoring_harness"
path = "examples/fraud_scoring_harness.rs"
[[example]]
name = "free_lunch_investigation"
path = "examples/free_lunch_investigation.rs"
[[example]]
name = "getting_started"
path = "examples/getting_started.rs"
[[example]]
name = "guardrail_semantics"
path = "examples/guardrail_semantics.rs"
[[example]]
name = "mab_constraints_tuning"
path = "examples/mab_constraints_tuning.rs"
[[example]]
name = "matrix_harness"
path = "examples/matrix_harness.rs"
[[example]]
name = "medical_triage_harness"
path = "examples/medical_triage_harness.rs"
[[example]]
name = "monitored_router"
path = "examples/monitored_router.rs"
[[example]]
name = "pareto_bandit"
path = "examples/pareto_bandit.rs"
[[example]]
name = "pcap_triage_harness"
path = "examples/pcap_triage_harness.rs"
[[example]]
name = "router_production"
path = "examples/router_production.rs"
[[example]]
name = "router_quickstart"
path = "examples/router_quickstart.rs"
[[example]]
name = "search_ranking_harness"
path = "examples/search_ranking_harness.rs"
[[example]]
name = "sticky_mab_router"
path = "examples/sticky_mab_router.rs"
[[example]]
name = "synthetic_drift_harness"
path = "examples/synthetic_drift_harness.rs"
[[example]]
name = "thompson_router"
path = "examples/thompson_router.rs"
[[example]]
name = "window_delayed_junk_label"
path = "examples/window_delayed_junk_label.rs"
[[test]]
name = "calibration"
path = "tests/calibration.rs"
[[test]]
name = "e2e_metrics"
path = "tests/e2e_metrics.rs"
[[test]]
name = "frontier_constraint_props"
path = "tests/frontier_constraint_props.rs"
[[test]]
name = "monitored_props"
path = "tests/monitored_props.rs"
[[test]]
name = "objective_manifold"
path = "tests/objective_manifold.rs"
[[test]]
name = "outcome_invariants"
path = "tests/outcome_invariants.rs"
[[test]]
name = "router_props"
path = "tests/router_props.rs"
[[test]]
name = "scenarios"
path = "tests/scenarios.rs"
[[bench]]
name = "coverage"
path = "benches/coverage.rs"
harness = false
[[bench]]
name = "monitor"
path = "benches/monitor.rs"
harness = false
[dependencies.logp]
version = "0.1"
[dependencies.pare]
version = "0.1.4"
[dependencies.rand]
version = "0.9"
optional = true
[dependencies.rand_distr]
version = "0.5"
optional = true
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dev-dependencies.criterion]
version = "0.7"
[dev-dependencies.proptest]
version = "1.9"
[dev-dependencies.serde_json]
version = "1.0"