Skip to content

Commit a568960

Browse files
authored
fix(chat): Clarify prompt message for trusting the tool in the session (#1113)
1 parent fc510b8 commit a568960

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ time = { version = "0.3.39", features = [
141141
"macros",
142142
"serde",
143143
] }
144-
tokio = { version = "1.44.0", features = ["full"] }
144+
tokio = { version = "1.44.2", features = ["full"] }
145145
tokio-tungstenite = "0.26.2"
146146
tokio-util = { version = "0.7.13", features = ["codec", "compat"] }
147147
toml = "0.8.12"

crates/q_cli/src/cli/chat/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ where
657657
style::SetForegroundColor(Color::Green),
658658
style::Print("t"),
659659
style::SetForegroundColor(Color::DarkGrey),
660-
style::Print("' to trust this tool for the session. ["),
660+
style::Print("' to trust (always allow) this tool for the session. ["),
661661
style::SetForegroundColor(Color::Green),
662662
style::Print("y"),
663663
style::SetForegroundColor(Color::DarkGrey),

crates/zbus/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ static_assertions = "1.1.0"
6868
async-trait = "0.1.87"
6969
async-fs = { version = "2.1.2", optional = true }
7070
# FIXME: We should only enable process feature for Mac OS. See comment on async-process below for why we can't.
71-
tokio = { version = "1.44.0", optional = true, features = [
71+
tokio = { version = "1.44.2", optional = true, features = [
7272
"rt",
7373
"net",
7474
"time",
@@ -120,7 +120,7 @@ ntest = "0.9.2"
120120
test-log = { version = "0.2.17", features = [
121121
"trace",
122122
], default-features = false }
123-
tokio = { version = "1.44.0", features = [
123+
tokio = { version = "1.44.2", features = [
124124
"macros",
125125
"rt-multi-thread",
126126
"fs",

0 commit comments

Comments
 (0)