2026-07-11 13:16:10 +07:00
|
|
|
[package]
|
|
|
|
|
name = "zesdex"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
authors = ["asepharyana <superaseph@gmail.com>"]
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
ratatui = "0.30.2"
|
|
|
|
|
crossterm = "0.28"
|
|
|
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time", "net", "io-util", "signal"] }
|
|
|
|
|
reqwest = { version = "0.12", features = ["json", "stream", "blocking", "native-tls-vendored"] }
|
|
|
|
|
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.9"
|
|
|
|
|
anyhow = "1"
|
|
|
|
|
include_dir = "0.7"
|
|
|
|
|
uuid = { version = "1", features = ["v4", "v5"] }
|
|
|
|
|
dirs = "5"
|
|
|
|
|
futures-util = "0.3"
|
|
|
|
|
pulldown-cmark = { version = "0.13", default-features = false }
|
|
|
|
|
syntect = { version = "5", default-features = false, features = ["default-fancy"] }
|
|
|
|
|
rusqlite = { version = "0.32", features = ["bundled"] }
|
|
|
|
|
ignore = "0.4"
|
|
|
|
|
regex = "1"
|
|
|
|
|
globset = "0.4"
|
|
|
|
|
infer = "0.16"
|
|
|
|
|
base64 = "0.22"
|
|
|
|
|
sha2 = "0.10"
|
|
|
|
|
libc = "0.2"
|
|
|
|
|
rmcp = { version = "1.8", default-features = false, features = ["client", "transport-child-process", "transport-streamable-http-client-reqwest", "macros"] }
|
|
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
|
tracing = "0.1"
|
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
2026-07-11 23:45:13 +07:00
|
|
|
webbrowser = "1"
|
2026-07-11 13:16:10 +07:00
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "zesdex"
|
|
|
|
|
path = "src/main.rs"
|