-
Notifications
You must be signed in to change notification settings - Fork 37
/
Cargo.toml
57 lines (52 loc) · 1.53 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
54
55
56
57
[package]
name = "dvm"
version = "1.9.0"
license = "MIT"
authors = ["迷渡 <[email protected]>", "CGQAQ <[email protected]>"]
edition = "2021"
description = "Deno Version Manager - Easy way to manage multiple active deno versions."
repository = "https://github.com/justjavac/dvm"
default-run = "dvm"
keywords = ["deno", "version", "dvm", "utils"]
categories = ["hardware-support"]
documentation = "https://docs.rs/dvm"
readme = "README.md"
[[bin]]
name = "dvm"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.75"
asserts-rs = "0.3.0"
cfg-if = "1.0.0"
clap = "4.4.11"
clap_derive = "4.4.7"
clap_complete = "4.4.4"
colored = "2.1.0"
dirs = "5.0.1"
indicatif = "0.17.7"
json_minimal = "0.1.3"
native-tls = { version = "0.2.11", features = ["vendored"] }
phf = { version = "0.11.2", features = ["macros"] }
semver = "1.0.20"
serde = { version = "1.0.19", features = ["derive"] }
serde_json = "1.0.108"
set_env = "1.3.4"
tempfile = "3.8.1"
tinyget = { version = "1.0.1", features = ["https"] }
which = "5.0.0"
[target.'cfg(windows)'.dependencies]
ctor = "0.2.5"
output_vt100 = "0.1.3"
winapi = { version = "0.3.9", features = ["winnls"] }
[package.metadata.winres]
# This section defines the metadata that appears in the dvm.exe PE header.
OriginalFilename = "dvm.exe"
LegalCopyright = "© Dvm contributors. MIT licensed."
ProductName = "Dvm"
FileDescription = "Deno Version Manager - Easy way to manage multiple active deno versions."
[profile.release]
codegen-units = 1
lto = true
opt-level = 'z' # Optimize for size
panic = "abort"
# strip = "symbols"