[package]
edition = "2024"
rust-version = "1.88"
name = "jev-repl"
version = "0.5.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Terminal REPL for shaping TypeSafe AI System One requests: noul, choice and score questions, with a live sketch editor"
readme = "README.md"
keywords = [
"typesafe",
"ai",
"repl",
"tui",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/aoprisan/typesafe-ai-rust-sdk"
[lib]
name = "jev_repl"
path = "src/lib.rs"
[[bin]]
name = "jev"
path = "src/main.rs"
[[test]]
name = "agent"
path = "tests/agent.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "cost"
path = "tests/cost.rs"
[[test]]
name = "eval"
path = "tests/eval.rs"
[[test]]
name = "headless"
path = "tests/headless.rs"
[[test]]
name = "repl"
path = "tests/repl.rs"
[[test]]
name = "sketch"
path = "tests/sketch.rs"
[dependencies.ratatui]
version = "0.30.2"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
features = ["preserve_order"]
[dependencies.sha2]
version = "0.10.9"
[dependencies.tokio]
version = "1.53.1"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
]
[dependencies.typesafe-ai-sdk]
version = "0.2.0"
[dev-dependencies.tokio]
version = "1.53.1"
features = [
"io-util",
"macros",
"process",
"rt-multi-thread",
]
[dev-dependencies.wiremock]
version = "0.6.5"