espup/Cargo.toml
HoWol76 6d6e3d08d6
update zip to v3.0.0 (#504)
* update zip to v3.0.0

* update Cargo.lock
2025-05-16 09:46:50 +02:00

63 lines
2.0 KiB
TOML

[package]
name = "espup"
version = "0.15.0"
authors = ["Sergio Gasquez Arcos <sergio.gasquez@gmail.com>"]
edition = "2024"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/esp-rs/espup"
description = """
Tool for installing and maintaining Espressif Rust ecosystem.
"""
keywords = ["cli", "embedded", "esp", "esp-rs", "xtensa"]
categories = ["command-line-utilities", "development-tools", "embedded"]
rust-version = "1.85.0"
[dependencies]
async-trait = "0.1.88"
bytes = "1.10.1"
clap = { version = "4.5.35", features = ["derive", "env"] }
clap_complete = "4.5.47"
directories = "6.0.0"
env_logger = "0.11.8"
flate2 = "1.1.1"
guess_host_triple = "0.1.4"
indicatif = "0.17.11"
indicatif-log-bridge = "0.2.3"
lazy_static = "1.5.0"
log = "0.4.27"
miette = { version = "7.5.0", features = ["fancy"] }
regex = "1.11.1"
reqwest = { version = "0.12.15", features = ["blocking", "socks", "stream"] }
retry = "2.1.0"
serde_json = "1.0.140"
strum = { version = "0.27.1", features = ["derive"] }
tar = "0.4.44"
tempfile = "3.19.1"
thiserror = "2.0.12"
tokio = { version = "1.44.2", features = ["full"] }
tokio-retry = "0.3.0"
tokio-stream = "0.1.17"
update-informer = "1.2.0"
xz2 = "0.1.7"
zip = "3.0.0"
[target.'cfg(unix)'.dependencies]
openssl = { version = "0.10.72", features = ["vendored"] }
[target.'cfg(windows)'.dependencies]
winreg = "0.55.0"
winapi = { version = "0.3.9", features = ["winuser"] }
[dev-dependencies]
assert_cmd = "2.0.16"
[package.metadata.binstall]
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "zip"
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ target }.{ archive-format }"
[profile.release]
lto = "thin"
strip = true