-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (50 loc) · 1.41 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
46
47
48
49
50
51
52
53
[package]
name = "verylup"
version = "0.1.4"
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 = "2021"
[dependencies]
anyhow = "1.0"
clap = {version = "4.5", features = ["derive"]}
clap_complete = "4.5"
console = "0.15.10"
directories = "5.0"
fern = "0.7.0"
log = "0.4.22"
reqwest = {version = "0.12.11", default-features = false, features = ["rustls-tls", "json"]}
self-replace = "1.5"
semver = {version = "1.0", features = ["serde"]}
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
tempfile = "3.14"
tokio = {version = "1.42", features = ["full"]}
toml = "0.8.19"
zip = "2.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.59"
[package.metadata.release]
tag = true
tag-name = "v{{version}}"