Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ exclude = [
resolver = "2"

[workspace.package]
version = "0.3.0"
version = "0.4.0"
edition = "2021"
authors = ["E-NoR"]
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/ecp-analyzer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ecp-analyzer"
description = "EgentCodePlexus — multi-language tree-sitter parser and route detector (Rust, TypeScript, Python, Go, Java, Swift, etc.)"
version = "0.3.0"
version = "0.4.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand All @@ -11,7 +11,7 @@ build = "build.rs"
sha2 = "0.11.0"

[dependencies]
ecp-core = { path = "../ecp-core", version = "0.3.0" }
ecp-core = { path = "../ecp-core", version = "0.4.0" }
phf = { version = "0.13", features = ["macros"] }
tree-sitter = "0.26"
tree-sitter-typescript = "*"
Expand Down
8 changes: 4 additions & 4 deletions crates/ecp-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "egent-code-plexus"
description = "EgentCodePlexus — code intelligence graph for AI agents and LLMs (multi-language AST analysis)"
version = "0.3.0"
version = "0.4.0"
edition.workspace = true
default-run = "ecp"
license.workspace = true
Expand All @@ -25,9 +25,9 @@ name = "ecp_cli"
path = "src/lib.rs"

[dependencies]
ecp-core = { path = "../ecp-core", version = "0.3.0" }
ecp-analyzer = { path = "../ecp-analyzer", version = "0.3.0" }
ecp-mcp = { path = "../ecp-mcp", version = "0.3.0" }
ecp-core = { path = "../ecp-core", version = "0.4.0" }
ecp-analyzer = { path = "../ecp-analyzer", version = "0.4.0" }
ecp-mcp = { path = "../ecp-mcp", version = "0.4.0" }
tokio = { version = "1", features = ["rt"] }
clap = { version = "4.5.4", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/ecp-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ecp-core"
description = "EgentCodePlexus — core graph storage and algorithms (zero-copy on-disk graph, registry, community detection)"
version = "0.3.0"
version = "0.4.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/ecp-mcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository.workspace = true
[dependencies]
anyhow = "1.0"
clap = "4.5"
ecp-core = { path = "../ecp-core", version = "0.3.0" }
ecp-core = { path = "../ecp-core", version = "0.4.0" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "io-std", "process"] }
Expand Down
Loading