rename rust lib from gurt to gurtlib

This commit is contained in:
Face
2025-09-09 19:01:46 +03:00
parent 9ca671ecd9
commit b6379f97d2
21 changed files with 41 additions and 41 deletions

View File

@@ -8,7 +8,7 @@ tokio = { version = "1.38.0", features = ["full"] }
futures = "0.3.30"
tantivy = "0.22"
sha2 = "0.10"
gurt = { path = "../protocol/library" }
gurtlib = { path = "../protocol/library" }
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "postgres", "chrono", "uuid"] }
scraper = "0.20"
lol_html = "1.2"

View File

@@ -1,6 +1,6 @@
use anyhow::{Result, Context};
use chrono::Utc;
use gurt::{GurtClient, GurtClientConfig};
use gurtlib::{GurtClient, GurtClientConfig};
use scraper::{Html, Selector};
use std::collections::{HashSet, VecDeque};
use std::sync::Arc;

View File

@@ -1,6 +1,6 @@
use anyhow::{Result, Context};
use gurt::prelude::*;
use gurt::GurtError;
use gurtlib::prelude::*;
use gurtlib::GurtError;
use serde_json::json;
use std::sync::Arc;
use tracing::{info, error};