forked from esp-rs/espup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
59 lines (53 loc) · 1.6 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
[package]
name = "espup"
version = "0.2.3"
authors = ["Sergio Gasquez Arcos <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/esp-rs/espup"
description = """
Tool for installing and maintaining ESP Rust environment.
"""
keywords = ["esp", "esp-rs", "embedded", "cli", "xtensa"]
categories = ["command-line-utilities", "development-tools", "embedded"]
rust-version = "1.62"
[dependencies]
anyhow = "1.0.66"
clap = { version = "4.0.28", features = ["derive"] }
dirs = "4.0.0"
flate2 = "1.0.25"
guess_host_triple = "0.1.3"
reqwest = { version = "0.11.12", features = ["blocking"] }
tar = "0.4.37"
zip = "0.6.3"
xz2 = "0.1.6"
console = "0.15.1"
tempfile = "3.3.0"
log = "0.4.17"
env_logger = "0.10.0"
embuild = { version = "0.30.4", features = ["espidf", "git"] }
strum = { version = "0.24", features = ["derive"] }
strum_macros = "0.24.3"
toml = "0.5.9"
directories-next = "2.0.0"
serde = { version = "1.0.148", features = ["derive"] }
miette = { version = "5.5.0", features = ["fancy"] }
regex = "1.7.0"
serde_json = "1.0.89"
thiserror = "1.0.37"
update-informer = "0.5.0"
[dev-dependencies]
assert_fs = "1.0.9"
assert_cmd = "2.0.6"
[target.aarch64-unknown-linux-gnu.dependencies]
openssl = { version = "0.10", features = ["vendored"] }
[target.x86_64-unknown-linux-gnu.dependencies]
openssl = { version = "0.10", features = ["vendored"] }
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ target }.{ archive-format }"
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "zip"
[profile.release]
lto = "thin"
strip = true