[package] name = "devai" version = "0.1.0" edition = "2021" rust-version = "1.80" license = "MIT OR Apache-2.0" description = "Command Agent runner to accelerate production coding. File based, fully customizable, NOT for building snake games." categories = ["command-line-utilities"] keywords = ["generative-ai","openai","genai","ai-coding"] homepage = "https://github.com/jeremychone/rust-devai" repository = "https://github.com/jeremychone/rust-devai" [lints.rust] unsafe_code = "forbid" # unused = { level = "allow", priority = -1 } # For exploratory dev. [dependencies] # -- Async tokio = { version = "1", features = ["full"] } # -- AI genai = "0.1.9" # -- Json & Data Files serde = { version = "1", features = ["derive"] } serde_json = "1" value-ext = "0.0.3" toml = "0.8" # -- Template & Scripting rhai = {version = "1.19", features = ["sync"]} handlebars = "6" # -- Cli clap = {version = "4.5.17", features = ["cargo", "derive"]} # -- Files simple-fs = { version = "=0.1.5" } # -- Others derive_more = {version = "1.0.0-beta", features = ["from"] } keyring = {version = "3", features = ["apple-native"]} html-escape = "0.2"