A safe, simple, extensible, and fast agent harness
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Move `ein_http` and `ein_plugin` crates to the `crates` directory from the `packages` directory

+12 -10
+2
Cargo.toml
··· 5 5 "crates/ein-proto", 6 6 "crates/ein-agent", 7 7 "crates/ein-core", 8 + "crates/ein_http", 9 + "crates/ein_plugin", 8 10 "packages/*", 9 11 ] 10 12 default-members = [
+1 -1
eind/Cargo.toml
··· 23 23 dirs = "6.0.0" 24 24 ein-agent = { path = "../crates/ein-agent" } 25 25 ein-proto = { path = "../crates/ein-proto" } 26 - ein_plugin = { path = "../packages/ein_plugin" } 26 + ein_plugin = { path = "../crates/ein_plugin" } 27 27 futures = { workspace = true } 28 28 serde = { workspace = true } 29 29 serde_json = { workspace = true }
+1 -1
packages/ein_anthropic/Cargo.toml
··· 13 13 14 14 [dependencies] 15 15 anyhow = { workspace = true } 16 - ein_plugin = { path = "../ein_plugin" } 16 + ein_plugin = { path = "../../crates/ein_plugin" } 17 17 serde = { workspace = true } 18 18 serde_json = { workspace = true } 19 19 wit-bindgen = { workspace = true }
+1 -1
packages/ein_bash/Cargo.toml
··· 13 13 14 14 [dependencies] 15 15 anyhow = { workspace = true } 16 - ein_plugin = { path = "../ein_plugin" } 16 + ein_plugin = { path = "../../crates/ein_plugin" } 17 17 serde = { workspace = true } 18 18 serde_json = { workspace = true } 19 19 wit-bindgen = { workspace = true}
+1 -1
packages/ein_edit/Cargo.toml
··· 13 13 14 14 [dependencies] 15 15 anyhow = { workspace = true } 16 - ein_plugin = { path = "../ein_plugin" } 16 + ein_plugin = { path = "../../crates/ein_plugin" } 17 17 serde = { workspace = true } 18 18 serde_json = { workspace = true } 19 19 wit-bindgen = { workspace = true }
packages/ein_http/Cargo.toml crates/ein_http/Cargo.toml
packages/ein_http/src/lib.rs crates/ein_http/src/lib.rs
+1 -1
packages/ein_ollama/Cargo.toml
··· 13 13 14 14 [dependencies] 15 15 anyhow = { workspace = true } 16 - ein_plugin = { path = "../ein_plugin" } 16 + ein_plugin = { path = "../../crates/ein_plugin" } 17 17 serde = { workspace = true } 18 18 serde_json = { workspace = true } 19 19 wit-bindgen = { workspace = true }
+1 -1
packages/ein_openai/Cargo.toml
··· 13 13 14 14 [dependencies] 15 15 anyhow = { workspace = true } 16 - ein_plugin = { path = "../ein_plugin" } 16 + ein_plugin = { path = "../../crates/ein_plugin" } 17 17 serde = { workspace = true } 18 18 serde_json = { workspace = true } 19 19 wit-bindgen = { workspace = true }
+1 -1
packages/ein_openrouter/Cargo.toml
··· 13 13 14 14 [dependencies] 15 15 anyhow = { workspace = true } 16 - ein_plugin = { path = "../ein_plugin" } 16 + ein_plugin = { path = "../../crates/ein_plugin" } 17 17 serde = { workspace = true } 18 18 serde_json = { workspace = true } 19 19 wit-bindgen = { workspace = true }
+1 -1
packages/ein_plugin/Cargo.toml crates/ein_plugin/Cargo.toml
··· 7 7 8 8 [dependencies] 9 9 anyhow = { workspace = true } 10 - ein-core = { path = "../../crates/ein-core" } 10 + ein-core = { path = "../ein-core" } 11 11 ein_http = { path = "../ein_http" } 12 12 serde = { workspace = true } 13 13 serde_json = { workspace = true }
packages/ein_plugin/src/lib.rs crates/ein_plugin/src/lib.rs
packages/ein_plugin/src/model_client.rs crates/ein_plugin/src/model_client.rs
packages/ein_plugin/src/tool.rs crates/ein_plugin/src/tool.rs
+1 -1
packages/ein_read/Cargo.toml
··· 13 13 14 14 [dependencies] 15 15 anyhow = { workspace = true } 16 - ein_plugin = { path = "../ein_plugin" } 16 + ein_plugin = { path = "../../crates/ein_plugin" } 17 17 serde = { workspace = true } 18 18 serde_json = { workspace = true } 19 19 wit-bindgen = { workspace = true}
+1 -1
packages/ein_write/Cargo.toml
··· 13 13 14 14 [dependencies] 15 15 anyhow = { workspace = true } 16 - ein_plugin = { path = "../ein_plugin" } 16 + ein_plugin = { path = "../../crates/ein_plugin" } 17 17 serde = { workspace = true } 18 18 serde_json = { workspace = true } 19 19 wit-bindgen = { workspace = true}