-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
45 lines (42 loc) · 1.79 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
[package]
name = "reinventory-manager"
version = "0.2.1"
edition = "2021"
rust-version = "1.78.0"
authors = [
"KisaragiEffective <[email protected]>",
"kisaragi marine <[email protected]>",
]
description = "An handy tool that is intended to help your inventory cleanup or dump."
readme = "README.md"
repository = "https://github.com/KisaragiMarine/neosvr-inventory-management"
license = "MIT OR Apache-2.0"
keywords = ["neosvr"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.82"
async-recursion = "1.1.1"
base64 = "0.22.1"
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.5.4", features = ["derive"] }
derive_more = "0.99.17"
email_address = "=0.2.9"
fern = { git = "https://github.com/KisaragiEffective/fern", branch = "kisaragieffective", version = "0.6.2-kisaragi-5", features = ["min_colored"] }
log = "0.4.21"
once_cell = "1.19.0"
reqwest = { version = "0.12.4", default-features = false, features = ["json"] }
serde = { version = "1.0.200", features = ["derive"] }
serde_json = "1.0.116"
strum = { version = "0.26.2", features = ["derive"] }
tokio = { version = "1.37.0", features = ["full"] }
url = { version = "2.5.0", features = ["serde"] }
uuid = { version = "1.8.0", features = ["v4"] }
[features]
https_rustls = ["reqwest/rustls-tls-native-roots"]
# split rules for following targets, because rustls does not support these targets yet:
# - aarch64-apple-darwin (https://github.com/briansmith/ring/issues/1442)
# Above targets do not depend on OpenSSL, according to reqwest.
# NOTE: You will not want to enable this feature if your target is Linux, because it depends on OpenSSL;
# USE AT YOUR OWN PERIL!!
https_os_native = ["reqwest/native-tls"]