# [1.7.0](https://github.com/asepharyana/zesdex/compare/v1.6.0...v1.7.0) (2026-07-14) ### Bug Fixes * **prompt:** perbarui system prompt dari CEO/company ke model hive-mind ([d392c4a](https://github.com/asepharyana/zesdex/commit/d392c4aa00154aae5a0f36db615f05adc385fdb5)) * **runtime:** add check for unconfigured provider to prevent misleading API errors ([181b512](https://github.com/asepharyana/zesdex/commit/181b5128ac1fba47627bf7b377358c782e3481b7)) ### Features * **install:** add installation script for building and symlinking the binary ([4eba9d0](https://github.com/asepharyana/zesdex/commit/4eba9d0a2fbe42b0383eaf872eaeace18cc59a92)) * **protocol:** add Paste request type for bracketed-paste events ([b92dab9](https://github.com/asepharyana/zesdex/commit/b92dab97e6efe1fd6f7c23b28310610c653a57b0)) * **provider:** enhance Claude provider configuration to support environment variable fallback ([4b16bc3](https://github.com/asepharyana/zesdex/commit/4b16bc31125018ad3d3e46706881596a226f5352)) * **runtime:** implement JSON repair function for truncated tool-call arguments ([e13f040](https://github.com/asepharyana/zesdex/commit/e13f04083313f3544bdb1a76b5ecd535ecf59e4f)) * **stream:** add method to detect incomplete tool calls and handle parsing errors ([732d603](https://github.com/asepharyana/zesdex/commit/732d6039dc23bc8ec323bc4f91be9a7131a61ef6))
63 lines
1.7 KiB
TOML
63 lines
1.7 KiB
TOML
[package]
|
|
name = "zesdex"
|
|
version = "1.7.0"
|
|
edition = "2021"
|
|
authors = ["asepharyana <superaseph@gmail.com>"]
|
|
|
|
# Treat all warnings as errors, set strict clippy levels
|
|
[lints.rust]
|
|
unused = "deny"
|
|
dead_code = "deny"
|
|
unreachable_code = "deny"
|
|
unused_imports = "deny"
|
|
unused_variables = "deny"
|
|
unused_mut = "deny"
|
|
unused_must_use = "deny"
|
|
deprecated = "deny"
|
|
trivial_casts = "deny"
|
|
trivial_numeric_casts = "deny"
|
|
|
|
[lints.clippy]
|
|
all = { level = "warn", priority = -1 }
|
|
pedantic = { level = "warn", priority = -2 }
|
|
|
|
[dependencies]
|
|
ratatui = "0.30.2"
|
|
crossterm = "0.29"
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time", "net", "io-util", "signal"] }
|
|
reqwest = { version = "0.13", features = ["json", "stream", "blocking", "native-tls-vendored", "form"] }
|
|
dom_smoothie = "0.18.0"
|
|
fast_html2md = "0.0.62"
|
|
scraper = "0.27.0"
|
|
url = "2"
|
|
percent-encoding = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde_yaml_ng = "0.10"
|
|
anyhow = "1"
|
|
include_dir = "0.7"
|
|
uuid = { version = "1", features = ["v4", "v5"] }
|
|
dirs = "6"
|
|
futures-util = "0.3"
|
|
pulldown-cmark = { version = "0.13", default-features = false }
|
|
syntect = { version = "5", default-features = false, features = ["default-fancy"] }
|
|
rusqlite = { version = "0.40", features = ["bundled"] }
|
|
ignore = "0.4"
|
|
regex = "1"
|
|
globset = "0.4"
|
|
infer = "0.19"
|
|
base64 = "0.22"
|
|
sha2 = "0.11"
|
|
hex = "0.4"
|
|
libc = "0.2"
|
|
rmcp = { version = "2.2", default-features = false, features = ["client", "transport-child-process", "transport-streamable-http-client-reqwest", "macros"] }
|
|
tracing = "0.1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
webbrowser = "1"
|
|
lsp-types = "0.97"
|
|
|
|
[[bin]]
|
|
name = "zesdex"
|
|
path = "src/main.rs"
|