2026-07-16 12:32:17 +07:00
|
|
|
[workspace]
|
|
|
|
|
resolver = "2"
|
|
|
|
|
members = [
|
2026-07-20 09:04:57 +07:00
|
|
|
"apps/domain",
|
|
|
|
|
"apps/application",
|
|
|
|
|
"apps/infrastructure",
|
|
|
|
|
"apps/interfaces/tui",
|
|
|
|
|
"apps/interfaces/api",
|
|
|
|
|
"apps/interfaces/daemon",
|
|
|
|
|
"apps/interfaces/ws",
|
|
|
|
|
"apps/interfaces/grpc",
|
|
|
|
|
"apps/interfaces/web",
|
|
|
|
|
"apps/gateway",
|
|
|
|
|
"apps/bootstrap",
|
2026-07-16 12:32:17 +07:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[workspace.package]
|
2026-07-20 05:30:00 +00:00
|
|
|
version = "1.17.0"
|
2026-07-11 13:16:10 +07:00
|
|
|
edition = "2021"
|
|
|
|
|
authors = ["asepharyana <superaseph@gmail.com>"]
|
|
|
|
|
|
2026-07-16 12:32:17 +07:00
|
|
|
[workspace.lints.rust]
|
2026-07-13 06:22:31 +07:00
|
|
|
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"
|
|
|
|
|
|
2026-07-16 12:32:17 +07:00
|
|
|
[workspace.lints.clippy]
|
2026-07-13 06:22:31 +07:00
|
|
|
all = { level = "warn", priority = -1 }
|
|
|
|
|
pedantic = { level = "warn", priority = -2 }
|
|
|
|
|
|
2026-07-16 12:32:17 +07:00
|
|
|
[workspace.dependencies]
|
2026-07-11 13:16:10 +07:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
2026-07-13 08:39:12 +07:00
|
|
|
serde_yaml_ng = "0.10"
|
2026-07-16 12:32:17 +07:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
2026-07-11 13:16:10 +07:00
|
|
|
uuid = { version = "1", features = ["v4", "v5"] }
|
2026-07-16 12:32:17 +07:00
|
|
|
anyhow = "1"
|
|
|
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time", "net", "io-util", "signal"] }
|
|
|
|
|
tracing = "0.1"
|
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
|
reqwest = { version = "0.13", features = ["json", "stream", "blocking", "native-tls-vendored", "form"] }
|
|
|
|
|
ratatui = "0.30.2"
|
|
|
|
|
crossterm = "0.29"
|
2026-07-13 08:39:12 +07:00
|
|
|
rusqlite = { version = "0.40", features = ["bundled"] }
|
2026-07-16 12:32:17 +07:00
|
|
|
thiserror = "1"
|
2026-07-11 13:16:10 +07:00
|
|
|
base64 = "0.22"
|
2026-07-13 08:39:12 +07:00
|
|
|
sha2 = "0.11"
|
|
|
|
|
hex = "0.4"
|
2026-07-11 13:16:10 +07:00
|
|
|
libc = "0.2"
|
2026-07-16 12:32:17 +07:00
|
|
|
dirs = "6"
|
|
|
|
|
regex = "1"
|
|
|
|
|
globset = "0.4"
|
|
|
|
|
ignore = "0.4"
|
|
|
|
|
nucleo-matcher = "0.3"
|
|
|
|
|
futures-util = "0.3"
|
2026-07-13 08:39:12 +07:00
|
|
|
rmcp = { version = "2.2", default-features = false, features = ["client", "transport-child-process", "transport-streamable-http-client-reqwest", "macros"] }
|
2026-07-12 12:43:50 +07:00
|
|
|
lsp-types = "0.97"
|
2026-07-16 04:05:37 +07:00
|
|
|
tiktoken-rs = "0.12"
|
2026-07-16 12:32:17 +07:00
|
|
|
similar = "3"
|
|
|
|
|
syntect = { version = "5", default-features = false, features = ["default-fancy"] }
|
|
|
|
|
pulldown-cmark = { version = "0.13", default-features = false }
|
|
|
|
|
infer = "0.19"
|
|
|
|
|
webbrowser = "1"
|
|
|
|
|
url = "2"
|
|
|
|
|
percent-encoding = "2"
|
|
|
|
|
dom_smoothie = "0.18.0"
|
|
|
|
|
fast_html2md = "0.0.62"
|
|
|
|
|
scraper = "0.27.0"
|
|
|
|
|
include_dir = "0.7"
|
|
|
|
|
axum = { version = "0.8", features = ["macros"] }
|
|
|
|
|
tower = "0.5"
|
|
|
|
|
tower-http = { version = "0.6", features = ["cors", "limit"] }
|
|
|
|
|
argon2 = "0.5"
|
|
|
|
|
jsonwebtoken = "9"
|
2026-07-20 09:04:57 +07:00
|
|
|
clap = { version = "4", features = ["derive"] }
|
|
|
|
|
rand_core = { version = "0.6", features = ["getrandom"] }
|
2026-07-11 13:16:10 +07:00
|
|
|
|
2026-07-20 09:04:57 +07:00
|
|
|
# Clean-architecture workspace crate references
|
|
|
|
|
zesdex-domain = { path = "apps/domain" }
|
|
|
|
|
zesdex-application = { path = "apps/application" }
|
|
|
|
|
zesdex-infrastructure = { path = "apps/infrastructure" }
|
|
|
|
|
zesdex-tui = { path = "apps/interfaces/tui" }
|
|
|
|
|
zesdex-api = { path = "apps/interfaces/api" }
|
|
|
|
|
zesdex-daemon = { path = "apps/interfaces/daemon" }
|
|
|
|
|
zesdex-ws = { path = "apps/interfaces/ws" }
|
|
|
|
|
zesdex-grpc = { path = "apps/interfaces/grpc" }
|
|
|
|
|
zesdex-web = { path = "apps/interfaces/web" }
|
|
|
|
|
zesdex-gateway = { path = "apps/gateway" }
|
|
|
|
|
zesdex-bootstrap = { path = "apps/bootstrap" }
|