1
0
mirror of https://github.com/jdiaz97/pdfx.git synced 2025-10-06 05:37:02 +02:00

changed name

This commit is contained in:
José Díaz
2025-06-29 19:59:26 +02:00
parent e559a685eb
commit 15c9cd2cca
4 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View File

@@ -889,7 +889,7 @@ dependencies = [
]
[[package]]
name = "pdfy"
name = "pdfx"
version = "0.1.0"
dependencies = [
"anyhow",

View File

@@ -1,5 +1,5 @@
[package]
name = "pdfy"
name = "pdfx"
version = "0.1.0"
edition = "2024"

View File

@@ -4,7 +4,7 @@ use std::env;
use crate::extractor::retrieve;
pub async fn run_cli() -> Result<(), Box<dyn std::error::Error>> {
let matches = Command::new("pdfy")
let matches = Command::new("pdfx")
.version("0.1.0")
.author("José Díaz <jose@boquila.org>")
.about("Extract information from PDF files using AI")

View File

@@ -1,6 +1,6 @@
#[tokio::main]
async fn main() {
let _ = pdfy::cli::run_cli().await;
let _ = pdfx::cli::run_cli().await;
// hide_window();
// boquilahub::gui::run_gui();
}