- `sharry::Client` fn signatures - `sharry::ClientError` rework - `file::Uploading` saves `file_id` instead of `patch_uri` - `impl sharry::Client for ureq::Agent` into separate file
24 lines
769 B
TOML
24 lines
769 B
TOML
[package]
|
|
name = "shrupl"
|
|
version = "0.1.0-alpha"
|
|
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"] }
|
|
console = { version = "0.15.11", default-features = false }
|
|
ctrlc = { version = "3.4.7", features = ["termination"] }
|
|
dialoguer = { version = "0.11.0", default-features = false }
|
|
dirs-next = "2.0.0"
|
|
env_logger = "0.11.8"
|
|
indicatif = { version = "0.17.11", default-features = false }
|
|
log = "0.4.27"
|
|
regex = "1.11.1"
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
serde_json = "1.0.140"
|
|
thiserror = "2.0.12"
|
|
ureq = { version = "3.0.11", features = ["json"] }
|
|
|
|
[profile.release]
|
|
lto = true
|
|
panic = "abort"
|