-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (53 loc) · 1.47 KB
/
Cargo.toml
File metadata and controls
57 lines (53 loc) · 1.47 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
56
57
[package]
name = "verylup"
version = "0.1.12"
authors = ["dalance@gmail.com"]
repository = "https://github.com/veryl-lang/verylup"
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "Veryl version manager"
edition = "2024"
[features]
no-self-update = []
[dependencies]
anyhow = "1.0"
clap = {version = "4.5", features = ["derive"]}
clap_complete = "4.5"
chrono = "0.4.44"
console = "0.16.2"
directories = "6.0"
fern = "0.7.0"
log = "0.4.29"
reqwest = {version = "0.13.2", default-features = false, features = ["json", "socks", "default-tls"]}
self-replace = "1.5"
semver = {version = "1.0", features = ["serde"]}
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
tempfile = "3.26"
tokio = {version = "1.50", features = ["full"]}
toml = "1.0.6"
zip = "8.2"
[target."cfg(windows)".dependencies.windows-sys]
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Storage_FileSystem",
"Win32_System_Console",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_IO",
"Win32_System_Ioctl",
"Win32_System_JobObjects",
"Win32_System_Kernel",
"Win32_System_LibraryLoader",
"Win32_System_SystemInformation",
"Win32_System_SystemServices",
"Win32_System_Threading",
"Win32_System_WindowsProgramming",
"Win32_UI",
"Win32_UI_WindowsAndMessaging",
]
version = "0.61"
[package.metadata.release]
tag = true
tag-name = "v{{version}}"