-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
34 lines (33 loc) · 1.05 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
[package]
name = "vscli"
version = "1.1.0"
edition = "2021"
authors = ["Michael Lohr <[email protected]>"]
description = "A CLI tool to launch vscode projects, which supports devcontainers."
readme = "README.md"
repository = "https://github.com/michidk/vscli"
documentation = "https://github.com/michidk/vscli"
homepage = "https://github.com/michidk/vscli"
license = "MIT"
keywords = ["development", "settings", "cli"]
categories = ["command-line-utilities"]
[dependencies]
chrono = { version = "0.4.38", default-features = false, features = ["std", "clock", "serde"]}
clap-verbosity-flag = "3.0.0"
clap = { version = "4.5.4", features = ["derive", "color", "help", "usage", "suggestions", "wrap_help", "env"] }
color-eyre = "0.6.3"
crossterm = { version = "0.28.1"}
dirs = "6.0.0"
env_logger = "0.11.3"
hex = "0.4.3"
inquire = "0.7.5"
json5 = "0.4.1"
log = "0.4.21"
ratatui = { version = "0.29.0"}
serde = { version = "1.0.199", features = ["derive"] }
serde_json = "1.0.116"
url = "2.5.0"
walkdir = "2.5.0"
wslpath2 = "0.1.3"
tui-textarea = "0.7.0"
nucleo-matcher = "0.3.1"