[package]
edition = "2024"
rust-version = "1.87"
name = "jevify"
version = "0.4.0"
build = false
exclude = [
".beads/",
".claude-plugin/",
".github/",
"AGENTS.md",
"benchmarks/",
"demo-record.sh",
"demo.cast",
"demo.tape",
"docs/superpowers/",
"evals/",
"scripts/",
"tests/release.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "grep for meaning: find the error in a 10,000-line log, a commit by description, the command for a task. A Unix CLI powered by Jev from TypeSafe AI; no key needed, thanks to classifier.dev."
homepage = "https://github.com/tpellet/jevify"
readme = "README.md"
keywords = [
"cli",
"grep",
"semantic-search",
"jev",
"typesafe",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/tpellet/jevify"
[package.metadata.dist]
dist = true
[lib]
name = "jevify"
path = "src/lib.rs"
[[bin]]
name = "jevify"
path = "src/main.rs"
[[test]]
name = "add"
path = "tests/add.rs"
[[test]]
name = "agent"
path = "tests/agent.rs"
[[test]]
name = "classifier"
path = "tests/classifier.rs"
[[test]]
name = "cli_basics"
path = "tests/cli_basics.rs"
[[test]]
name = "client"
path = "tests/client.rs"
[[test]]
name = "is"
path = "tests/is.rs"
[[test]]
name = "live"
path = "tests/live.rs"
[[test]]
name = "pick"
path = "tests/pick.rs"
[[test]]
name = "run_args"
path = "tests/run_args.rs"
[[test]]
name = "run_route"
path = "tests/run_route.rs"
[[test]]
name = "sort"
path = "tests/sort.rs"
[[test]]
name = "tournament"
path = "tests/tournament.rs"
[[test]]
name = "why"
path = "tests/why.rs"
[dependencies.anyhow]
version = "1"
[dependencies.blake3]
version = "1.8"
[dependencies.clap]
version = "4.6"
features = [
"derive",
"env",
"wrap_help",
]
[dependencies.directories]
version = "6"
[dependencies.futures]
version = "0.3"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.13"
features = ["json"]
[dependencies.rustix]
version = "1.1.5"
features = ["fs"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1.53"
features = [
"rt",
"macros",
"time",
"sync",
]
[dependencies.toon-format]
version = "0.5"
default-features = false
[dev-dependencies.assert_cmd]
version = "2.2"
[dev-dependencies.predicates]
version = "3.1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1.53"
features = [
"rt-multi-thread",
"macros",
]
[dev-dependencies.wiremock]
version = "0.6"
[profile.dist]
lto = "thin"
inherits = "release"
[profile.release]
lto = "thin"
codegen-units = 1
strip = true