Skip to content

Commit f5e7823

Browse files
committed
update old deps; increase MAX_RECURSION_DEPTH
1 parent 6ab0e1d commit f5e7823

3 files changed

Lines changed: 18 additions & 39 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ tokio = { version = "1.41", features = ["full"] }
1919
reqwest = { version = "0.12", features = ["json", "stream"] }
2020
serde = { version = "1.0", features = ["derive"] }
2121
serde_json = "1.0"
22-
thiserror = "1.0"
23-
rustyline = "14.0"
24-
colored = "2.1"
22+
thiserror = "2.0"
23+
rustyline = "17.0"
24+
colored = "3.0"
2525
syntect = "5.2"
2626

2727
# Utilities

src/repl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ impl Repl {
148148
content_blocks: Vec<ContentBlock>,
149149
runtime: &tokio::runtime::Runtime,
150150
) -> Result<()> {
151-
const MAX_RECURSION_DEPTH: u32 = 15;
151+
const MAX_RECURSION_DEPTH: u32 = 50;
152152

153153
if std::env::var("SOFOS_DEBUG").is_ok() {
154154
eprintln!("\n=== handle_response: recursion_depth={}, blocks={} ===",

0 commit comments

Comments
 (0)