[package]
edition = "2021"
rust-version = "1.75.0"
name = "probador"
version = "1.0.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for Probar: Rust-native testing framework for WASM games"
readme = "README.md"
keywords = [
"testing",
"wasm",
"games",
"cli",
"automation",
]
categories = [
"development-tools::testing",
"command-line-utilities",
"wasm",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/paiml/probar"
[features]
browser = ["jugar-probar/browser"]
default = ["browser"]
[lib]
name = "probador"
path = "src/lib.rs"
[[bin]]
name = "probador"
path = "src/main.rs"
[[example]]
name = "stress_testing"
path = "examples/stress_testing.rs"
[[test]]
name = "smoke_tests"
path = "tests/smoke_tests.rs"
[dependencies.atty]
version = "0.2"
[dependencies.axum]
version = "0.8"
features = ["ws"]
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
"unicode",
"wrap_help",
]
[dependencies.console]
version = "0.15"
[dependencies.futures]
version = "0.3"
[dependencies.glob]
version = "0.3"
[dependencies.indicatif]
version = "0.17"
[dependencies.jugar-probar]
version = "=1.0.3"
[dependencies.mime_guess]
version = "2.0"
[dependencies.notify]
version = "7.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml_ng]
version = "0.10"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.42"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
"fs",
"process",
"io-util",
]
[dependencies.tokio-tungstenite]
version = "0.28"
[dependencies.tower]
version = "0.5"
[dependencies.tower-http]
version = "0.6"
features = [
"fs",
"cors",
"set-header",
"compression-gzip",
]
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.predicates]
version = "3.1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
approx_constant = "allow"
assigning_clones = "allow"
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
clone_on_ref_ptr = "allow"
cloned_instead_of_copied = "allow"
cognitive_complexity = "allow"
comparison_chain = "allow"
debug_assert_with_mut_call = "allow"
derivable_impls = "allow"
doc_markdown = "allow"
double_must_use = "allow"
expect_used = "warn"
format_push_string = "allow"
if_not_else = "allow"
implicit_hasher = "allow"
imprecise_flops = "allow"
inefficient_to_string = "warn"
io_other_error = "allow"
large_enum_variant = "warn"
large_stack_arrays = "warn"
manual_assert = "allow"
manual_div_ceil = "allow"
manual_let_else = "allow"
map_unwrap_or = "allow"
match_same_arms = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_fields_in_debug = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
needless_raw_string_hashes = "allow"
option_if_let_else = "allow"
panic = "warn"
range_plus_one = "allow"
redundant_closure = "allow"
redundant_closure_for_method_calls = "allow"
return_self_not_must_use = "allow"
should_implement_trait = "allow"
significant_drop_tightening = "allow"
similar_names = "allow"
struct_excessive_bools = "allow"
struct_field_names = "allow"
suboptimal_flops = "allow"
too_many_lines = "allow"
trivially_copy_pass_by_ref = "allow"
type_complexity = "allow"
uninlined_format_args = "allow"
unnecessary_debug_formatting = "allow"
unnecessary_wraps = "allow"
unreachable = "warn"
unreadable_literal = "allow"
unused_self = "allow"
unwrap_used = "warn"
use_self = "allow"
useless_vec = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unsafe_code = "warn"