[package]
edition = "2021"
name = "aprender-test-js-gen"
version = "0.35.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "NASA/DO-178B-grade Rust DSL for type-safe JavaScript generation"
readme = "README.md"
keywords = [
"javascript",
"codegen",
"dsl",
"wasm",
"webworker",
]
categories = [
"development-tools",
"wasm",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/paiml/probar"
[features]
default = []
fuzzing = []
[lib]
name = "probar_js_gen"
path = "src/lib.rs"
[[test]]
name = "comprehensive_tests"
path = "tests/comprehensive_tests.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[dependencies.blake3]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.quickcheck]
version = "1"
[dev-dependencies.quickcheck_macros]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
doc_markdown = "allow"
expect_used = "warn"
missing_errors_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
panic = "warn"
return_self_not_must_use = "allow"
should_implement_trait = "allow"
similar_names = "allow"
too_many_lines = "allow"
uninlined_format_args = "allow"
unwrap_used = "warn"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"