mirror of
https://github.com/Dangoware/confetti-box.git
synced 2025-04-19 07:12:58 -05:00
Removed unused import, removed patch from dependencies
This commit is contained in:
parent
beee488402
commit
e6ae15bea5
2 changed files with 16 additions and 16 deletions
|
@ -7,7 +7,7 @@ keywords = ["selfhost", "upload", "command_line"]
|
|||
categories = ["command-line-utilities"]
|
||||
authors.workspace = true
|
||||
license = "AGPL-3.0-or-later"
|
||||
edition = "2021"
|
||||
edition = "2024"
|
||||
|
||||
[[bin]]
|
||||
name = "imu"
|
||||
|
@ -17,17 +17,17 @@ path = "src/main.rs"
|
|||
workspace = true
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.92"
|
||||
chrono = { version = "0.4.38", features = ["serde"] }
|
||||
clap = { version = "4.5.20", features = ["derive", "unicode"] }
|
||||
directories = "5.0.1"
|
||||
indicatif = { version = "0.17.8", features = ["improved_unicode"] }
|
||||
owo-colors = { version = "4.1.0", features = ["supports-colors"] }
|
||||
reqwest = { version = "0.12.8", features = ["json", "stream"] }
|
||||
serde = { version = "1.0.213", features = ["derive"] }
|
||||
serde_json = "1.0.132"
|
||||
thiserror = "1.0.68"
|
||||
tokio = { version = "1.41.0", features = ["fs", "macros", "rt-multi-thread"] }
|
||||
tokio-util = { version = "0.7.12", features = ["codec"] }
|
||||
toml = "0.8.19"
|
||||
uuid = { version = "1.11.0", features = ["serde", "v4"] }
|
||||
anyhow = "1.0"
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
clap = { version = "4.5", features = ["derive", "unicode"] }
|
||||
directories = "6.0"
|
||||
indicatif = { version = "0.17", features = ["improved_unicode"] }
|
||||
owo-colors = { version = "4.1", features = ["supports-colors"] }
|
||||
reqwest = { version = "0.12", features = ["json", "stream"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
thiserror = "1.0"
|
||||
tokio = { version = "1.41", features = ["fs", "macros", "rt-multi-thread"] }
|
||||
tokio-util = { version = "0.7", features = ["codec"] }
|
||||
toml = "0.8"
|
||||
uuid = { version = "1.11", features = ["serde", "v4"] }
|
||||
|
|
|
@ -7,7 +7,7 @@ use owo_colors::OwoColorize;
|
|||
use reqwest::Client;
|
||||
use serde::{Deserialize, Serialize};
|
||||
use thiserror::Error;
|
||||
use tokio::{fs::{create_dir, File}, io::{AsyncReadExt, AsyncWriteExt}, task::JoinSet};
|
||||
use tokio::{fs::File, io::{AsyncReadExt, AsyncWriteExt}, task::JoinSet};
|
||||
use uuid::Uuid;
|
||||
use clap::{arg, builder::{styling::RgbColor, Styles}, Parser, Subcommand};
|
||||
use anyhow::{anyhow, bail, Context as _, Result};
|
||||
|
|
Loading…
Reference in a new issue