[package]
edition = "2021"
name = "opensession-core"
version = "0.1.4"
build = false
include = [
"src/**/*.rs",
"Cargo.toml",
"LICENSE",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HAIL (Human AI Interaction Log) core types and validation"
readme = false
license = "MIT"
repository = "https://github.com/hwisu/opensession-core"
[features]
testing = []
[lib]
name = "opensession_core"
path = "src/lib.rs"
doctest = false
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[lints.clippy]
collapsible_if = "warn"
empty_line_after_doc_comments = "warn"
needless_return = "warn"
redundant_closure = "warn"
single_match = "warn"
[lints.clippy.all]
level = "warn"
priority = -1