36 lines
1.1 KiB
TOML
36 lines
1.1 KiB
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]
|
||
base64 = { version = "0.22.1", default-features = false }
|
||
blake2b_simd = "1.0.3"
|
||
clap = { version = "4.5.41", features = ["derive"] }
|
||
console = { version = "0.16.0", 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.18.0", 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.12", features = ["json"] }
|
||
|
||
[dev-dependencies]
|
||
tempfile = "3.20.0"
|
||
uuid = { version = "1.17.0", features = ["rng", "std", "v1"] }
|
||
|
||
[profile.release]
|
||
# Optimize for speed even more aggressively
|
||
opt-level = "z"
|
||
# better inlining
|
||
codegen-units = 1
|
||
# linker‐time optimization
|
||
lto = true
|
||
debug = false
|
||
panic = "abort"
|