mirror of
https://github.com/Dangoware/confetti-box.git
synced 2025-06-22 14:42:59 -05:00
34 lines
1.1 KiB
TOML
34 lines
1.1 KiB
TOML
[package]
|
|
name = "imu"
|
|
version = "0.1.1"
|
|
description = "A simple command line interface to interact with a Confetti-Box instance."
|
|
repository = "https://github.com/Dangoware/confetti-box"
|
|
keywords = ["selfhost", "upload", "command_line"]
|
|
categories = ["command-line-utilities"]
|
|
authors.workspace = true
|
|
license = "AGPL-3.0-or-later"
|
|
edition = "2024"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
base64 = "0.22"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
clap = { version = "4.5", features = ["derive", "unicode"] }
|
|
directories = "6.0"
|
|
futures-util = "0.3"
|
|
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-tungstenite = { version = "0.26", features = ["native-tls"] }
|
|
tokio-util = { version = "0.7", features = ["codec"] }
|
|
toml = "0.8"
|
|
url = { version = "2.5", features = ["serde"] }
|
|
|
|
confetti_box = { path = "../confetti-box" }
|