forked from suptejas/volt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
84 lines (80 loc) · 1.98 KB
/
Cargo.toml
File metadata and controls
84 lines (80 loc) · 1.98 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[package]
name = "volt"
version = "0.0.2"
authors = [
"Tejas Ravishankar <[email protected]>",
"Volt Contributors (https://github.com/voltpkg/volt/graphs/contributors)",
]
license = "Apache-2.0"
description = "A fast, memory-safe package manager for the web."
edition = "2018"
default-run = "volt"
[dependencies]
async-trait = "0.1"
base64 = "0.13.0"
bytes = "1.0.1"
clap = "3.0.0-beta.2"
colored = "2.0"
console = "0.14"
dialoguer = "0.8"
dirs = "4.0.0"
flate2 = "1.0"
futures = "0.3.15"
futures-util = "0.3.15"
git-config = "0.1.4"
indicatif = "0.16"
isahc = '1.4.1'
jwalk = "0.6.0"
lazy_static = "1.4"
miette = "2.1.1"
prettytable-rs = "0.8.0"
rand = "0.8.4"
regex = "1"
reqwest = "0.11.4"
# rslint_cli = { path = "src/rslint/cli" }
# rslint_config = { path = "src/rslint/config" }
# rslint_core = { path = "src/rslint/core" }
# rslint_errors = { path = "src/rslint/errors" }
# rslint_lexer = { path = "src/rslint/lexer" }
# rslint_macros = { path = "src/rslint/macros" }
# rslint_parser = { path = "src/rslint/parser" }
# rslint_regex = { path = "src/rslint/regex" }
# rslint_rowan = { path = "src/rslint/rowan" }
# rslint_syntax = { path = "src/rslint/syntax" }
# rslint_text_edit = { path = "src/rslint/text_edit" }
node-semver = "1.0.1"
cacache = "9.0.0"
semver_rs = "0.1.3"
serde_json = "1.0.64"
serde = { version = "1.0", features = ["derive"] }
sha-1 = "0.9"
sha2 = "0.9.5"
ssri = "7.0.0"
structopt = "0.3"
syntect = "4.5.0"
tar = "0.4"
termimad = "0.16.0"
thiserror = "1.0"
tokio = { version = "1.10.0", features = ["fs", "macros", "rt-multi-thread"] }
walkdir = "2.3.2"
minifier = "0.0.41"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = [
"errhandlingapi",
"fileapi",
"guiddef",
"handleapi",
"ioapiset",
"processthreadsapi",
"securitybaseapi",
"winbase",
"winioctl",
"winnt",
] }
tempfile = "3.2"
scopeguard = "1.1"
[profile.release]
opt-level = "s"
lto = "fat"
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = 'abort'