|
1 | 1 | [package] |
2 | | -name = "lip-cli" |
3 | | -version.workspace = true |
4 | | -edition.workspace = true |
5 | | -authors.workspace = true |
6 | | -license.workspace = true |
7 | | -repository.workspace = true |
8 | | -homepage.workspace = true |
9 | | -description = "LIP — Linked Incremental Protocol: CLI tool" |
10 | | -keywords = ["code-intelligence", "cli", "lsp", "mcp", "developer-tools"] |
11 | | -categories = ["development-tools", "command-line-utilities"] |
| 2 | +name = "lip-cli" |
| 3 | +version.workspace = true |
| 4 | +edition.workspace = true |
| 5 | +rust-version.workspace = true |
| 6 | +authors.workspace = true |
| 7 | +license.workspace = true |
| 8 | +repository.workspace = true |
| 9 | +homepage.workspace = true |
| 10 | +documentation.workspace = true |
| 11 | +description = "LIP — persistent, incremental code intelligence daemon. Blast-radius indexing, MCP server, LSP bridge, and semantic search in one binary." |
| 12 | +keywords = ["code-intelligence", "cli", "lsp", "mcp", "developer-tools"] |
| 13 | +categories = ["development-tools", "command-line-utilities"] |
| 14 | +readme = "README.md" |
12 | 15 |
|
13 | 16 | [[bin]] |
14 | 17 | name = "lip" |
15 | 18 | path = "src/main.rs" |
16 | 19 |
|
17 | 20 | [dependencies] |
18 | | -lip = { package = "lip-core", path = "../../bindings/rust", version = "2.0.0" } |
| 21 | +lip = { package = "lip-core", path = "../../bindings/rust", version = "2.0.1" } |
19 | 22 | clap = { version = "4", features = ["derive", "env"] } |
20 | 23 | tokio = { version = "1", features = ["full"] } |
21 | 24 | tower-lsp = "0.20" |
|
0 commit comments