-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (53 loc) · 1.32 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (53 loc) · 1.32 KB
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
[package]
name = "fnva"
version = "0.0.90"
edition = "2021"
authors = ["protagonistss"]
description = "跨平台环境切换工具,支持 Java 和 LLM 环境配置"
license = "MIT"
repository = "https://github.com/Protagonistss/fnva"
homepage = "https://github.com/Protagonistss/fnva"
documentation = "https://github.com/Protagonistss/fnva#readme"
readme = "README.md"
keywords = ["environment", "java", "llm", "cli", "version-manager"]
categories = ["command-line-utilities", "development-tools"]
exclude = [
"scripts/",
"platforms/",
".github/",
"*.log",
".vscode/",
".idea/",
"package.json",
"package-lock.json",
"lib/",
"bin/*.js",
"bin/*.ps1",
"bin/*.bat",
"bin/*.cmd",
".npmignore",
]
[dependencies]
clap = { version = "4.5", features = ["derive"] }
toml = "0.8"
serde = { version = "1.0", features = ["derive"] }
dirs = "6.0"
which = "7.0"
reqwest = { version = "0.12", features = ["json", "stream"] }
tokio = { version = "1.0", features = ["rt-multi-thread", "macros", "net"] }
serde_json = "1.0"
handlebars = "4.0"
url = "2.5"
futures-util = "0.3"
indicatif = "0.17"
zip = "2"
chrono = { version = "0.4", features = ["serde"] }
thiserror = "2"
sha2 = "0.10.9"
hex = "0.4.3"
async-trait = "0.1.89"
[dev-dependencies]
tempfile = "3"
assert_cmd = "2"
predicates = "3"
httpmock = "0.7"