-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
41 lines (38 loc) · 1.17 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
[package]
name = "tpi"
version = "1.0.7"
edition = "2021"
license = "Apache-2.0"
authors = ["Sven Rademakers <[email protected]>"]
description = "Official Turing-Pi2 CLI tool"
homepage = "https://turingpi.com/"
repository = "https://github.com/turing-machines/tpi"
readme = "README.md"
categories= ["command-line-interface"]
keywords= ["turing-pi", "tpi", "CLI", "edge-computing", "board-management"]
exclude = [".github", "deny.toml", "scripts/ci/*"]
[dependencies]
anyhow = "1.0.86"
byteorder = "1.5.0"
bytes = "1.6.0"
chrono = "0.4.38"
clap = { version = "4.5.9", features = ["derive", "wrap_help", "env"] }
clap_complete = "4.5.7"
crc32fast = "1.4.2"
crossterm = "=0.24.0"
dirs = "5.0.1"
hex = { version = "0.4.3" }
indicatif = { version = "0.17.8", features = ["tokio"] }
platform-info = "2.0.3"
reqwest = { version = "0.12.5", default-features = false, features = ["gzip", "json", "multipart", "stream"] }
serde_json = "1.0.120"
tokio = { version = "1.38.0", features = ["rt", "rt-multi-thread", "macros", "fs"] }
tokio-util = "0.7.11"
url = "2.5.2"
[features]
default = ["reqwest/rustls-tls"]
native-tls = ["reqwest/native-tls"]
localhost = []
[profile.release]
lto = true
strip = true