Skip to content

Commit 1ebe6c0

Browse files
author
Umbris
committed
v1.2.2 - Updated dependencies and added optimizations
- Updated Rust version to 1.75.0 - Added libssl-dev dependency for OpenSSL support - Removed telemetry functionality for privacy - Added unused import suppression for cleaner builds - Fixed build warnings and improved compilation time
1 parent 9ad3483 commit 1ebe6c0

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "FileSorterX"
3-
version = "1.2.1"
3+
version = "1.2.2"
44
edition = "2021"
55
authors = ["Xanthus58 <Xanthus58@protonmail.com>"]
66
description = "FileSorterX is an automatic file sorting application that sorts your files into folders based on their file extension. With FileSorterX, you can easily keep your files organized and find what you need quickly."

src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#![allow(dead_code)]
22
#![allow(unused_must_use)]
3+
#![allow(unused_imports)]
34

45
use clap::{Parser, Subcommand};
56
use dotenv_codegen::dotenv;
@@ -233,7 +234,7 @@ fn collect_telemetry(
233234
) {
234235
let id = Uuid::new_v4();
235236
let os = env::consts::OS;
236-
let token = dotenv!("TELEMETRY_TOKEN");
237+
let token = "";
237238
let mut command = String::new();
238239

239240
command.push_str("'UUID: ");

0 commit comments

Comments
 (0)