31 lines
808 B
TOML
31 lines
808 B
TOML
[package]
|
|
name = "lockman"
|
|
description = "Management of dependencies: Downloads files and verifies integrity by hashes"
|
|
license = "MIT"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["C0ffeeCode", "Satoqz"]
|
|
repository = "https://github.com/satoqz/lockman"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.16", features = ["derive"] }
|
|
serde = { version = "1.0.209", features = ["derive"] }
|
|
toml = "0.8.19"
|
|
sha2 = { version = "0.10.8" }
|
|
reqwest = "0.12.7"
|
|
tokio = { version = "1.40.0" }
|
|
|
|
[profile.dev.package.sha2]
|
|
# unoptimized, hash calculation is very expensive for larger files
|
|
opt-level = 1
|
|
|
|
[lints.clippy]
|
|
# uninlined_format_args = { level = "warn", priority = -1 }
|
|
correctness = "warn"
|
|
suspicious = "warn"
|
|
complexity = "warn"
|
|
perf = "warn"
|
|
style = "warn"
|
|
pedantic = "warn"
|
|
# restriction = "warn"
|
|
# cargo = "warn"
|