-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
31 lines (28 loc) · 847 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
[package]
edition = "2021"
name = "jvmain"
version = "0.2.0"
[[bin]]
name="jvmain"
[lib]
name="libjvs"
crate-type=["cdylib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = {version = "4.0.32", features = ["derive"]}
download_rs_reborned = {version = "0.2.2", features = ["async_download"]}
http = "0.2.6"
json = "0.12.4"
reqwest = {version = "0.11", features = ["json"]}
serde = {version = "1.0", features = ["derive"]}
tokio = {version = "1", features = ["full"]}
toml = "0.5"
zip = "0.6.3"
dotenv = "0.15.0"
console = "0.15.0"
indicatif = "0.17.2"
serde_json="1.0.91"
# windows-sys = {version = "0.32.0", features = ["Win32_Foundation","Win32_Security", "Win32_System_Threading", "Win32_System_SystemServices"]}
[[test]]
name = "parser_test"
path = "test/parser_test.rs"