[package]
edition = "2024"
rust-version = "1.93"
name = "lix"
version = "0.7.0"
authors = ["Opral"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embeddable version control for apps and AI agents."
homepage = "https://lix.dev"
documentation = "https://docs.rs/lix-sdk"
readme = "README.md"
keywords = [
"version-control",
"ai-agents",
"semantic-diff",
"change-tracking",
"embeddable",
]
categories = [
"development-tools",
"artificial-intelligence",
"filesystem",
]
license = "MIT"
repository = "https://github.com/opral/lix"
[lib]
name = "lix"
path = "src/lib.rs"
[lints.clippy]
bool_assert_comparison = "allow"
cargo_common_metadata = "allow"
collapsible_else_if = "allow"
collapsible_if = "allow"
doc_link_with_quotes = "allow"
doc_markdown = "allow"
fallible_impl_from = "allow"
future_not_send = "allow"
if_not_else = "allow"
inline_always = "allow"
iter_on_empty_collections = "allow"
iter_on_single_items = "allow"
large_enum_variant = "allow"
let_underscore_future = "allow"
let_underscore_untyped = "allow"
manual_string_new = "allow"
map_unwrap_or = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
multiple_bound_locations = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
needless_bitwise_bool = "allow"
needless_pass_by_value = "allow"
option_option = "allow"
or_fun_call = "allow"
redundant_feature_names = "allow"
redundant_pub_crate = "allow"
result_unit_err = "allow"
return_self_not_must_use = "allow"
significant_drop_tightening = "allow"
similar_names = "allow"
single_match_else = "allow"
single_range_in_vec_init = "allow"
string_lit_as_bytes = "allow"
struct_field_names = "allow"
too_long_first_doc_paragraph = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
trivially_copy_pass_by_ref = "allow"
type_complexity = "allow"
unused_async = "allow"
wildcard_imports = "allow"
[lints.clippy.all]
level = "warn"
priority = -2
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.complexity]
level = "warn"
priority = -1
[lints.clippy.correctness]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.perf]
level = "warn"
priority = -1
[lints.clippy.restriction]
level = "allow"
priority = -1
[lints.clippy.style]
level = "warn"
priority = -1
[lints.clippy.suspicious]
level = "warn"
priority = -1
[lints.rust]
missing_copy_implementations = "warn"
missing_debug_implementations = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unconditional_recursion = "deny"
unused_import_braces = "warn"
unused_qualifications = "warn"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = []