-
Notifications
You must be signed in to change notification settings - Fork 24
/
Cargo.toml
62 lines (56 loc) · 1.65 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "espup"
version = "0.14.0"
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"
bytes = "1.9.0"
clap = { version = "4.5.23", features = ["derive", "env"] }
clap_complete = "4.5.38"
directories = "5.0.1"
env_logger = "0.11.5"
flate2 = "1.0.35"
guess_host_triple = "0.1.4"
indicatif = "0.17.9"
indicatif-log-bridge = "0.2.3"
lazy_static = "1.5.0"
log = "0.4.22"
miette = { version = "7.4.0", features = ["fancy"] }
regex = "1.11.1"
reqwest = { version = "0.12.9", features = ["blocking", "socks", "stream"] }
retry = "2.0.0"
serde_json = "1.0.133"
strum = { version = "0.26.3", features = ["derive"] }
tar = "0.4.43"
tempfile = "3.14.0"
thiserror = "2.0.7"
tokio = { version = "1.42.0", features = ["full"] }
tokio-retry = "0.3.0"
tokio-stream = "0.1.17"
update-informer = "1.1.0"
xz2 = "0.1.7"
zip = "2.2.1"
[target.'cfg(unix)'.dependencies]
openssl = { version = "0.10.68", 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