[package]
edition = "2024"
name = "llama-cpp-bindings-types"
version = "0.8.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared value types for llama-cpp-bindings, free of llama.cpp/FFI dependencies"
readme = false
license = "Apache-2.0"
repository = "https://github.com/intentee/llama-cpp-bindings"
resolver = "2"
[lib]
name = "llama_cpp_bindings_types"
path = "src/lib.rs"
[dependencies.serde]
version = "=1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "=1.0.149"
[dependencies.thiserror]
version = "=2.0.18"
[lints.clippy]
module_name_repetitions = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_op_in_unsafe_fn = "warn"
unused_qualifications = "warn"