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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ members = [
]

[workspace.package]
version = "0.0.5"
version = "0.0.6"
edition = "2024"
rust-version = "1.90"
authors = ["Evan Dobry <evandobry@gmail.com>"]
Expand Down
8 changes: 4 additions & 4 deletions crates/neuromance-agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ log = { workspace = true }
serde_json = { workspace = true }
uuid = { workspace = true }

neuromance = { version = "0.0.5", path = "../neuromance" }
neuromance-common = { version = "0.0.5", path = "../neuromance-common" }
neuromance-client = { version = "0.0.5", path = "../neuromance-client" }
neuromance-tools = { version = "0.0.5", path = "../neuromance-tools" }
neuromance = { version = "0.0.6", path = "../neuromance" }
neuromance-common = { version = "0.0.6", path = "../neuromance-common" }
neuromance-client = { version = "0.0.6", path = "../neuromance-client" }
neuromance-tools = { version = "0.0.6", path = "../neuromance-tools" }


[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions crates/neuromance-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ categories.workspace = true
description = "Interactive command-line interface for LLM interactions"

[dependencies]
neuromance = { version = "0.0.5", path = "../neuromance" }
neuromance-tools = { version = "0.0.5", path = "../neuromance-tools" }
neuromance = { version = "0.0.6", path = "../neuromance" }
neuromance-tools = { version = "0.0.6", path = "../neuromance-tools" }
rustyline = "17.0.1"
anyhow = "1.0"
tokio = { version = "1", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/neuromance-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ log.workspace = true
secrecy.workspace = true
smallvec.workspace = true

neuromance-common = { version = "0.0.5", path = "../neuromance-common" }
neuromance-common = { version = "0.0.6", path = "../neuromance-common" }

[dev-dependencies]
clap = { version = "4.0", features = ["derive", "env"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/neuromance-tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ tokio.workspace = true
toml.workspace = true
rmcp.workspace = true

neuromance-common = { version = "0.0.5", path = "../neuromance-common" }
neuromance-common = { version = "0.0.6", path = "../neuromance-common" }
6 changes: 3 additions & 3 deletions crates/neuromance/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ thiserror = { workspace = true }
tokio = { workspace = true }
uuid = { workspace = true }

neuromance-common = { version = "0.0.5", path = "../neuromance-common" }
neuromance-client = { version = "0.0.5", path = "../neuromance-client" }
neuromance-tools = { version = "0.0.5", path = "../neuromance-tools" }
neuromance-common = { version = "0.0.6", path = "../neuromance-common" }
neuromance-client = { version = "0.0.6", path = "../neuromance-client" }
neuromance-tools = { version = "0.0.6", path = "../neuromance-tools" }

[dev-dependencies]
clap = { workspace = true }
Expand Down