jev-repl 0.7.0

Terminal REPL for shaping TypeSafe AI System One requests: noul, choice and score questions, with a live sketch editor
Documentation
[package]
name = "jev-repl"
version = "0.7.0"
edition = "2024"
rust-version = "1.88"
description = "Terminal REPL for shaping TypeSafe AI System One requests: noul, choice and score questions, with a live sketch editor"
license = "MIT"
repository = "https://github.com/aoprisan/typesafe-ai-rust-sdk"
readme = "README.md"
keywords = ["typesafe", "ai", "repl", "tui", "cli"]
categories = ["command-line-utilities", "development-tools"]

[lib]
name = "jev_repl"
path = "src/lib.rs"

[[bin]]
name = "jev"
path = "src/main.rs"

[dependencies]
typesafe-ai-sdk = { path = "..", version = "0.2.0" }
ratatui = "0.30.2"
serde = { version = "1.0.229", features = ["derive"] }
serde_json = { version = "1.0.151", features = ["preserve_order"] }
sha2 = "0.10.9"
tokio = { version = "1.53.1", features = ["macros", "rt-multi-thread", "sync", "time"] }

[dev-dependencies]
# `process` and `io-util` are test-only: the CLI tests spawn the binary while a mock server
# answers it from this process, which a blocking wait would deadlock.
tokio = { version = "1.53.1", features = ["io-util", "macros", "process", "rt-multi-thread"] }
wiremock = "0.6.5"