fix: fetch llm tool no longer depends on system libssl.so (#1404)

This commit is contained in:
yetone
2025-02-26 17:36:01 +08:00
committed by GitHub
parent ef78c36e98
commit 6f98cb0ed6
11 changed files with 169 additions and 36 deletions

View File

@@ -7,7 +7,7 @@ struct State<'a> {
environment: Mutex<Option<Environment<'a>>>,
}
impl<'a> State<'a> {
impl State<'_> {
fn new() -> Self {
State {
environment: Mutex::new(None),