18 lines
484 B
TOML
18 lines
484 B
TOML
[package]
|
|
name = "shrupl"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "ShrUpl is a tool to upload files to a Sharry Instance through a public Alias, leveraging the tus protocol"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.38", features = ["derive"] }
|
|
dirs-next = "2.0.0"
|
|
env_logger = "0.11.8"
|
|
log = "0.4.27"
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
serde_json = "1.0.140"
|
|
ureq = { version = "3.0.11", features = ["json"] }
|
|
|
|
[profile.release]
|
|
lto = true
|
|
panic = "abort"
|