4db168253c
Minga deja de ser Rust-only. Cualquiera de los cinco dialectos
(Rust + 4 nuevos) se ingresa al CAS por su AST normalizado, hashea
estructuralmente, sincroniza por DHT como cualquier nodo. La
auto-deteccion por extension hace que minga ingest archivo.{py,ts,js,go}
"simplemente funcione".
API nueva en minga_core::parse:
- Funciones por dialecto: python, typescript, javascript, go (~6 LOC
c/u sobre el parse_with comun). Mas la rust existente.
- Enum Dialect con parse(source) y name() para logging.
- detect_by_extension(ext) -> Option<Dialect>: rs/py/pyi/ts/js/mjs/
cjs/go (case-insensitive). None para extensiones desconocidas.
Wire en minga-cli:
- cmd_ingest deja de hardcodear parse::rust — usa
detect_dialect(file)?.parse(...).
- initial_scan + cmd_watch cambian is_rs_file -> is_supported_source.
- CliError::UnsupportedLanguage { path, extension } nuevo, lista las
extensiones reconocidas en el mensaje.
Notas sobre hashing:
- Hashing estructural (cas::hash_node) funciona para todos. NO es
alpha-equivalente.
- Hashing alpha-equivalente (alpha::hash_node_alpha) sigue siendo
Rust-only — cada lenguaje tiene reglas distintas para binder vs
constructor; implementacion per-language queda como work futuro
(requiere conocimiento profundo de cada gramatica).
- Sanity test structural_hash_distinguishes_languages verifica que
"x = 1" parseado como Python != JS — las gramaticas no comparten
kinds, hashes salen distintos. Importante para evitar colisiones.
Deps nuevas (workspace + minga-core):
- tree-sitter-python 0.23, tree-sitter-typescript 0.23 (modo
LANGUAGE_TYPESCRIPT, no TSX), tree-sitter-javascript 0.23,
tree-sitter-go 0.23.
Tests: 9 nuevos en parse::tests (parse basico para 5 dialectos +
detect_by_extension canonical/case-insensitive + name() +
structural_hash_distinguishes_languages). 108 verdes en minga-core,
10 en minga-cli, sin regresion.
Pendientes: alpha-hashing per-language; alpha-Rust documentados en
alpha.rs (if let, while let, let-else, let-chains, or_pattern con
bindings).
239 lines
7.8 KiB
TOML
239 lines
7.8 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
# ============================================================
|
|
# core/ — Init y compat (arje absorbido)
|
|
# ============================================================
|
|
"crates/core/brahman-card",
|
|
"crates/core/brahman-card-wit",
|
|
"crates/core/brahman-handshake",
|
|
"crates/core/brahman-broker",
|
|
"crates/core/brahman-admin",
|
|
"crates/shared/brahman-sidecar",
|
|
"crates/shared/brahman-net",
|
|
"crates/core/ente-card",
|
|
"crates/core/ente-bus",
|
|
"crates/core/ente-cas",
|
|
"crates/core/ente-kernel",
|
|
"crates/core/ente-soma",
|
|
"crates/core/ente-wasm",
|
|
"crates/core/ente-snapshot",
|
|
"crates/core/ente-brain",
|
|
"crates/core/ente-zero",
|
|
"crates/core/ente-echo",
|
|
"crates/core/ente-policy-provider",
|
|
"crates/core/ente-logind-compat",
|
|
"crates/core/ente-hostnamed-compat",
|
|
"crates/core/ente-timedated-compat",
|
|
"crates/core/ente-localed-compat",
|
|
"crates/core/ente-journald-compat",
|
|
"crates/core/ente-resolved-compat",
|
|
"crates/core/ente-polkit-compat",
|
|
"crates/core/ente-machined-compat",
|
|
"crates/core/ente-tmpfiles-compat",
|
|
"crates/core/ente-systemd1-compat",
|
|
"crates/core/ente-notify-compat",
|
|
"crates/core/ente-binfmt-compat",
|
|
"crates/core/ente-timer-compat",
|
|
|
|
# ============================================================
|
|
# modules/semantic_dht/ — DHT semántico (minga absorbido)
|
|
# ============================================================
|
|
"crates/modules/semantic_dht/minga-core",
|
|
"crates/modules/semantic_dht/minga-store",
|
|
"crates/modules/semantic_dht/minga-p2p",
|
|
"crates/modules/semantic_dht/minga-vfs",
|
|
"crates/modules/semantic_dht/minga-cli",
|
|
|
|
# ============================================================
|
|
# modules/ui_engine/ — Motor de widgets (yahweh libs+widgets)
|
|
# ============================================================
|
|
"crates/modules/ui_engine/libs/core",
|
|
"crates/modules/ui_engine/libs/theme",
|
|
"crates/modules/ui_engine/libs/bus",
|
|
"crates/modules/ui_engine/libs/providers/fs",
|
|
"crates/modules/ui_engine/libs/providers/sqlite",
|
|
"crates/modules/ui_engine/widgets/tree",
|
|
"crates/modules/ui_engine/widgets/container_core",
|
|
"crates/modules/ui_engine/widgets/splitter",
|
|
"crates/modules/ui_engine/widgets/tabs",
|
|
"crates/modules/ui_engine/widgets/tiled",
|
|
"crates/modules/ui_engine/widgets/text_input",
|
|
|
|
# ============================================================
|
|
# modules/nakui/ — ERP matemático (nakui absorbido)
|
|
# ============================================================
|
|
"crates/modules/nakui/core",
|
|
|
|
# ============================================================
|
|
# modules/nouser/ — explorador de Mónadas (nuevo)
|
|
# ============================================================
|
|
"crates/modules/nouser/card",
|
|
"crates/modules/nouser/core",
|
|
"crates/modules/nouser/nous",
|
|
"crates/modules/nouser/nous-mock",
|
|
"crates/modules/nouser/nous-real",
|
|
|
|
# ============================================================
|
|
# apps/ — apps que consumen el protocolo (yahweh modules+shell)
|
|
# ============================================================
|
|
"crates/apps/file_explorer",
|
|
"crates/apps/database_explorer",
|
|
"crates/apps/text_viewer",
|
|
"crates/apps/image_viewer",
|
|
"crates/apps/yahweh-shell",
|
|
"crates/apps/nouser-explorer",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.80"
|
|
license = "MIT OR Apache-2.0"
|
|
authors = ["Brahman Contributors"]
|
|
publish = false
|
|
repository = "https://example.invalid/brahman"
|
|
|
|
[workspace.dependencies]
|
|
# === Serialización ===
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde-big-array = "0.5"
|
|
postcard = { version = "1", features = ["use-std"] }
|
|
toml = "0.8"
|
|
bincode = "1"
|
|
base64 = "0.22"
|
|
|
|
# === Errores ===
|
|
thiserror = "2" # bump uniforme; arje (era 1) puede requerir ajustes menores
|
|
anyhow = "1"
|
|
|
|
# === Async ===
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-util = { version = "0.7", features = ["compat"] }
|
|
async-trait = "0.1"
|
|
futures = "0.3"
|
|
|
|
# === Observabilidad ===
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
|
|
|
|
# === Linux primitives (arje) ===
|
|
nix = { version = "0.29", features = ["signal", "process", "sched", "mount", "fs", "socket", "net", "user"] }
|
|
libc = "0.2"
|
|
|
|
# === IDs / Hash / Crypto ===
|
|
ulid = { version = "1", features = ["serde"] }
|
|
uuid = { version = "1", features = ["v4"] }
|
|
sha2 = "0.10"
|
|
blake3 = "1.5"
|
|
ed25519-dalek = "2"
|
|
aes-gcm = "0.10"
|
|
argon2 = "0.5"
|
|
rand = "0.8"
|
|
|
|
# === WASM (arje) ===
|
|
wasmi = "0.40"
|
|
wat = "1"
|
|
|
|
# === Storage / DB ===
|
|
sled = "0.34"
|
|
rusqlite = { version = "0.31", features = ["bundled", "blob"] }
|
|
|
|
# === P2P (minga) ===
|
|
libp2p = { version = "0.56", features = ["tokio", "tcp", "noise", "yamux", "macros", "kad", "identify"] }
|
|
libp2p-stream = "=0.4.0-alpha"
|
|
libp2p-allow-block-list = "0.6"
|
|
|
|
# === Code parsing (minga) ===
|
|
tree-sitter = "0.24"
|
|
tree-sitter-rust = "0.23"
|
|
tree-sitter-python = "0.23"
|
|
tree-sitter-typescript = "0.23"
|
|
tree-sitter-javascript = "0.23"
|
|
tree-sitter-go = "0.23"
|
|
|
|
# === FS notify ===
|
|
notify = "6.1"
|
|
|
|
# === CLI / auth (minga) ===
|
|
clap = { version = "4", features = ["derive"] }
|
|
rpassword = "7"
|
|
|
|
# === D-Bus (arje compat) ===
|
|
zbus = { version = "4", default-features = false, features = ["tokio"] }
|
|
|
|
# === Tests ===
|
|
tempfile = "3"
|
|
|
|
# === GPUI (yahweh) ===
|
|
gpui = "0.2"
|
|
|
|
# === Filesystem helpers ===
|
|
directories = "5"
|
|
|
|
# ============================================================
|
|
# Intra-workspace deps de yahweh (referenciadas por workspace = true)
|
|
# ============================================================
|
|
yahweh-core = { path = "crates/modules/ui_engine/libs/core" }
|
|
yahweh-theme = { path = "crates/modules/ui_engine/libs/theme" }
|
|
yahweh-bus = { path = "crates/modules/ui_engine/libs/bus" }
|
|
yahweh-provider-fs = { path = "crates/modules/ui_engine/libs/providers/fs" }
|
|
yahweh-provider-sqlite = { path = "crates/modules/ui_engine/libs/providers/sqlite" }
|
|
yahweh-widget-tree = { path = "crates/modules/ui_engine/widgets/tree" }
|
|
yahweh-widget-container-core = { path = "crates/modules/ui_engine/widgets/container_core" }
|
|
yahweh-widget-splitter = { path = "crates/modules/ui_engine/widgets/splitter" }
|
|
yahweh-widget-tabs = { path = "crates/modules/ui_engine/widgets/tabs" }
|
|
yahweh-widget-tiled = { path = "crates/modules/ui_engine/widgets/tiled" }
|
|
yahweh-widget-text-input = { path = "crates/modules/ui_engine/widgets/text_input" }
|
|
yahweh-file-explorer = { path = "crates/apps/file_explorer" }
|
|
yahweh-database-explorer = { path = "crates/apps/database_explorer" }
|
|
yahweh-text-viewer = { path = "crates/apps/text_viewer" }
|
|
yahweh-image-viewer = { path = "crates/apps/image_viewer" }
|
|
|
|
[profile.release]
|
|
lto = "thin"
|
|
codegen-units = 1
|
|
strip = "symbols"
|
|
panic = "abort"
|
|
|
|
[profile.dev]
|
|
opt-level = 0
|
|
# `line-tables-only` mantiene stack traces con archivo:línea correctos
|
|
# pero descarta el resto de symbols. Reduce target/ ~40% sin sacrificar
|
|
# debugging real para nuestro flujo (no usamos gdb sobre estos crates).
|
|
debug = "line-tables-only"
|
|
split-debuginfo = "unpacked"
|
|
incremental = true
|
|
# Más codegen-units = más paralelismo + builds incrementales más chicas
|
|
# (cada cambio re-compila menos). Default es 256 en dev pero lo
|
|
# anclamos para evitar regresiones.
|
|
codegen-units = 256
|
|
|
|
# Override puntual para deps grandes que NO debuggeamos: gpui, ort,
|
|
# fastembed, tokenizers, image. Subir opt-level acá hace que sus libs
|
|
# pesen menos en target/ (símbolos descartados durante la build).
|
|
[profile.dev.package."*"]
|
|
opt-level = 0
|
|
debug = "line-tables-only"
|
|
|
|
[profile.dev.package.gpui]
|
|
opt-level = 1
|
|
debug = false
|
|
|
|
[profile.dev.package.ort]
|
|
opt-level = 1
|
|
debug = false
|
|
|
|
[profile.dev.package.fastembed]
|
|
opt-level = 1
|
|
debug = false
|
|
|
|
[profile.dev.package.tokenizers]
|
|
opt-level = 1
|
|
debug = false
|
|
|
|
[profile.dev.package.image]
|
|
opt-level = 1
|
|
debug = false
|