[package]
edition = "2021"
rust-version = "1.83"
name = "faith"
version = "0.3.0"
authors = ["Victor Gutierrez <victorgutierrezgomes@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent-first Bible CLI. Multi-locale, deterministic, offline. Returns canonical JSON, supports batch and multi-translation parallel lookups."
homepage = "https://github.com/V-Gutierrez/faith"
documentation = "https://docs.rs/faith"
readme = "README.md"
keywords = [
"bible",
"cli",
"agent",
"scripture",
"fts5",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/V-Gutierrez/faith"
[lib]
name = "faith"
path = "src/lib.rs"
[[bin]]
name = "faith"
path = "src/main.rs"
[[test]]
name = "cli_snapshots"
path = "tests/cli_snapshots.rs"
[[test]]
name = "reference_golden"
path = "tests/reference_golden.rs"
[dependencies.clap]
version = "4"
features = [
"derive",
"cargo",
]
[dependencies.clap_complete]
version = "4"
[dependencies.directories]
version = "5"
[dependencies.regex]
version = "1"
[dependencies.rusqlite]
version = "0.32"
features = [
"bundled",
"blob",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.time]
version = "0.3"
features = [
"formatting",
"macros",
]
[dependencies.toml]
version = "0.8"
[dependencies.unicode-normalization]
version = "0.1"
[dependencies.ureq]
version = "2"
features = ["json"]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.insta]
version = "1"
features = ["json"]
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
strip = true