mirror of
https://github.com/esp-rs/espup.git
synced 2025-09-27 12:50:54 +00:00
58 lines
1.5 KiB
TOML
58 lines
1.5 KiB
TOML
[package]
|
|
name = "espup"
|
|
version = "0.12.3-dev"
|
|
authors = ["Sergio Gasquez Arcos <sergio.gasquez@gmail.com>"]
|
|
edition = "2021"
|
|
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.74.1"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.83"
|
|
clap = { version = "4.5.20", features = ["derive", "env"] }
|
|
clap_complete = "4.5.33"
|
|
directories = "5.0.1"
|
|
env_logger = "0.11.5"
|
|
flate2 = "1.0.34"
|
|
guess_host_triple = "0.1.4"
|
|
log = "0.4.22"
|
|
miette = { version = "7.2.0", features = ["fancy"] }
|
|
regex = "1.11.0"
|
|
reqwest = { version = "0.12.8", features = ["blocking", "socks"] }
|
|
retry = "2.0.0"
|
|
serde_json = "1.0.128"
|
|
strum = { version = "0.26.3", features = ["derive"] }
|
|
tar = "0.4.42"
|
|
tempfile = "3.13.0"
|
|
thiserror = "1.0.64"
|
|
tokio = { version = "1.40.0", features = ["full"] }
|
|
tokio-retry = "0.3.0"
|
|
update-informer = "1.1.0"
|
|
xz2 = "0.1.7"
|
|
zip = "2.2.0"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
openssl = { version = "0.10.66", features = ["vendored"] }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winreg = "0.52.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
|