[package]
edition = "2024"
name = "frankensearch-core"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core traits, types, and error types for frankensearch"
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/Dicklesworthstone/frankensearch"
[lib]
name = "frankensearch_core"
path = "src/lib.rs"
[[test]]
name = "schema_conformance"
path = "tests/schema_conformance.rs"
[dependencies.asupersync]
version = "0.3.1"
features = [
"proc-macros",
"test-internals",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11.0"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "1.0.3"
[dependencies.tracing]
version = "0.1"
[dependencies.unicode-normalization]
version = "0.1"
[dev-dependencies.proptest]
version = "1.6"
[lints.clippy]
cast_precision_loss = "allow"
collapsible_if = "allow"
collapsible_match = "allow"
duration_suboptimal_units = "allow"
if_not_else = "allow"
implicit_hasher = "allow"
items_after_statements = "allow"
manual_is_multiple_of = "allow"
map_unwrap_or = "allow"
match_same_arms = "allow"
missing_const_for_fn = "allow"
missing_panics_doc = "allow"
no_effect_underscore_binding = "allow"
redundant_clone = "allow"
redundant_closure_for_method_calls = "allow"
single_match_else = "allow"
suboptimal_flops = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
uninlined_format_args = "allow"
unused_async = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"