-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (28 loc) · 837 Bytes
/
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
[package]
name = "nexus-client"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.70"
reqwest = { version = "0.11.16", features=["json", "stream"] }
clap = { version = "4.2.2", features=["derive", "env"] }
log = "0.4.17"
env_logger = "0.10.0"
serde = { version = "1.0.159", features=["serde_derive"] }
serde_json = "1.0.95"
netrc-rs = "0.1.2"
url = "2.3.1"
tokio = { version = "1.27.0", features = ["full"] }
serde-xml-rs = "0.6.0"
futures-util = "0.3.28"
walkdir = "2.3.3"
dirs = "5.0.1"
# https://stackoverflow.com/questions/66585798/how-to-avoid-dependency-on-libssl-so-10-and-libcrypto-so-10
[dependencies.openssl]
version = "0.10.50"
features = ["vendored"]
[profile.release]
opt-level="z"
strip="symbols"
lto="fat"