diff --git a/quickpeep_raker/src/bin/qp-seedrake.rs b/quickpeep_raker/src/bin/qp-seedrake.rs index 2a2fb18..ecfcff8 100644 --- a/quickpeep_raker/src/bin/qp-seedrake.rs +++ b/quickpeep_raker/src/bin/qp-seedrake.rs @@ -11,7 +11,6 @@ use std::path::PathBuf; use tokio::sync::mpsc; use tokio::sync::mpsc::Receiver; -use quickpeep_raker::config; use quickpeep_raker::config::RakerConfig; use quickpeep_raker::raking::{get_robots_txt_for, RakeIntent}; use quickpeep_raker::storage::records::{AllowedDomainRecord, WeedDomainRecord}; @@ -41,8 +40,8 @@ pub async fn main() -> anyhow::Result<()> { let config_path = opts .config - .unwrap_or_else(|| PathBuf::from("qp_raker.toml")); - let config = config::RakerConfig::load(&config_path).context("Failed to load config")?; + .unwrap_or_else(|| PathBuf::from("quickpeep.ron")); + let config = RakerConfig::load(&config_path).context("Failed to load config")?; if !config.raker.workbench_dir.exists() { bail!(