프로젝트 이름 `kb` → `kebab` rename 의 첫 단계. - workspace `Cargo.toml`: members `crates/kb-*` → `crates/kebab-*`, repository URL `altair823/kb` → `altair823/kebab`. - 18 crate 폴더 rename via `git mv` (history 보존). - 각 crate `Cargo.toml`: `name = "kb-*"` → `"kebab-*"`, path deps `../kb-*` → `../kebab-*`. - 모든 `.rs`: `kb_<id>` snake-case 모듈 path 18 개 (`kb_core`, `kb_config`, `kb_app`, `kb_cli`, `kb_eval`, `kb_search`, `kb_chunk`, `kb_normalize`, `kb_source_fs`, `kb_parse_md`, `kb_parse_types`, `kb_store_sqlite`, `kb_store_vector`, `kb_embed`, `kb_embed_local`, `kb_llm`, `kb_llm_local`, `kb_rag`) → `kebab_<id>` 일괄 sed (단어 경계 \\b 사용해 영어 문장 안의 "kb" 약어 미오염). CLI binary 이름 (`[[bin]] name = "kb"`), 환경변수 `KB_*`, XDG paths, tracing target, 그리고 docs sweep 은 다음 commit 에서. ## 검증 - `cargo check --workspace` clean — 모든 crate 빌드 통과 후 commit. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
41 lines
1.6 KiB
TOML
41 lines
1.6 KiB
TOML
[package]
|
|
name = "kebab-parse-md"
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
description = "Markdown frontmatter and block parsing into kb-core::Metadata / kb-parse-types intermediates"
|
|
|
|
[dependencies]
|
|
kebab-core = { path = "../kebab-core" }
|
|
kebab-parse-types = { path = "../kebab-parse-types" }
|
|
anyhow = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
time = { workspace = true }
|
|
tracing = { workspace = true }
|
|
# pulldown-cmark is the CommonMark parser used by the `blocks` submodule.
|
|
# GFM tables are gated by the runtime `Options::ENABLE_TABLES` flag, not a
|
|
# cargo feature; we strip the default `getopts` + `html` features since we
|
|
# only use the pull-parser API.
|
|
pulldown-cmark = { version = "0.13", default-features = false }
|
|
# serde_yaml (dtolnay) was archived as unmaintained in 2024.
|
|
# We use the maintained fork serde_yaml_ng. Keeping the same `serde_yaml`-style
|
|
# API surface lets us swap if a different fork wins long term.
|
|
serde_yaml_ng = "0.10"
|
|
toml = "0.8"
|
|
# `lingua` ships every supported language as a feature flag; the `default`
|
|
# feature pulls all 75+ language models (huge build time + binary size).
|
|
# For p1-2 we only need a small subset for autodetect + tests. Add more
|
|
# languages here as future tasks call for them.
|
|
lingua = { version = "1.8", default-features = false, features = [
|
|
"korean",
|
|
"english",
|
|
"japanese",
|
|
"chinese",
|
|
] }
|
|
|
|
[dev-dependencies]
|
|
serde_json = { workspace = true }
|