[package]
edition = "2021"
name = "truthlens"
version = "0.5.0"
authors = ["Yabloko Labs"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "AI hallucination detector — formally verified trust scoring for LLM outputs"
homepage = "https://github.com/yablokolabs/truthlens"
documentation = "https://docs.rs/truthlens"
readme = "README.md"
keywords = [
"hallucination",
"ai",
"llm",
"fact-checking",
"trust",
]
categories = [
"text-processing",
"science",
]
license = "Apache-2.0"
repository = "https://github.com/yablokolabs/truthlens"
[features]
default = []
verify = ["ureq"]
[lib]
name = "truthlens"
path = "src/lib.rs"
[[bin]]
name = "truthlens"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.atty]
version = "0.2"
[dependencies.colored]
version = "2"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.ureq]
version = "2"
features = ["json"]
optional = true