[package]
edition = "2024"
name = "solo-core"
version = "0.11.5"
authors = ["Michael <michael@solo.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Solo: shared types and traits for the memory daemon"
readme = false
license = "Apache-2.0"
repository = "https://github.com/CallMeJones/solo"
resolver = "2"
[lib]
name = "solo_core"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1.83"
[dependencies.bytemuck]
version = "1.21"
features = ["derive"]
[dependencies.chrono]
version = "0.4.39"
features = ["serde"]
[dependencies.serde]
version = "1.0.217"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.135"
[dependencies.thiserror]
version = "2.0.9"
[dependencies.uuid]
version = "1.11"
features = [
"v4",
"v7",
"serde",
]
[lints.clippy]
assertions_on_constants = "allow"
await_holding_lock = "allow"
clone_on_copy = "allow"
collapsible_if = "allow"
const_is_empty = "allow"
doc_lazy_continuation = "allow"
doc_overindented_list_items = "allow"
explicit_auto_deref = "allow"
large_enum_variant = "allow"
manual_repeat_n = "allow"
manual_str_repeat = "allow"
manual_strip = "allow"
needless_borrows_for_generic_args = "allow"
needless_pass_by_ref_mut = "allow"
print_literal = "allow"
question_mark = "allow"
redundant_clone = "allow"
redundant_closure_for_method_calls = "allow"
single_char_add_str = "allow"
stable_sort_primitive = "allow"
too_many_arguments = "allow"
unnecessary_mut_passed = "allow"
unnecessary_sort_by = "allow"
useless_format = "allow"
useless_vec = "allow"
write_with_newline = "allow"