shrupl/Cargo.toml

21 lines
563 B
TOML
Raw Normal View History

2025-05-17 23:57:52 +00:00
[package]
name = "shrupl"
version = "0.1.0"
edition = "2024"
2025-05-27 14:01:09 +00:00
description = "ShrUpl is a tool to upload files to a Sharry Instance through a public Alias, leveraging the tus protocol"
2025-05-17 23:57:52 +00:00
[dependencies]
2025-05-27 14:01:09 +00:00
clap = { version = "4.5.38", features = ["derive"] }
2025-06-05 01:34:12 +00:00
ctrlc = { version = "3.4.7", features = ["termination"] }
2025-06-05 11:20:27 +00:00
dialoguer = "0.11.0"
2025-06-02 23:57:17 +00:00
dirs-next = "2.0.0"
2025-05-22 17:34:44 +00:00
env_logger = "0.11.8"
log = "0.4.27"
serde = { version = "1.0.219", features = ["derive"] }
2025-06-02 23:57:17 +00:00
serde_json = "1.0.140"
2025-05-22 17:34:44 +00:00
ureq = { version = "3.0.11", features = ["json"] }
2025-05-27 14:01:09 +00:00
[profile.release]
lto = true
panic = "abort"