-
-
Notifications
You must be signed in to change notification settings - Fork 114
/
Cargo.toml
76 lines (70 loc) · 2.06 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[package]
authors = ["tamasfe"]
description = "A CLI for Taplo TOML toolkit"
license = "MIT"
edition = "2021"
name = "taplo-cli"
version = "0.9.0"
homepage = "https://taplo.tamasfe.dev"
repository = "https://github.com/tamasfe/taplo"
categories = ["development-tools", "command-line-utilities"]
keywords = ["toml", "linter", "formatter"]
[features]
default = ["rustls-tls"]
lsp = ["taplo-lsp", "async-ctrlc"]
native-tls = ["taplo-common/native-tls"]
rustls-tls = ["taplo-common/rustls-tls"]
toml-test = []
[dependencies]
anyhow = { version = "1", features = ["backtrace"] }
async-ctrlc = { version = "1.2.0", features = ["stream"], optional = true }
clap = { version = "3.0.0", features = ["derive", "cargo", "env"] }
codespan-reporting = "0.11.1"
futures = "0.3"
glob = "0.3"
hex = "0.4"
itertools = "0.10.3"
once_cell = "1.4"
regex = "1.4"
reqwest = { version = "0.11.9", default-features = false, features = [
"json",
] }
schemars = "0.8"
serde = "1"
serde_json = "1"
taplo = { version = "0.13.0", path = "../taplo", features = ["serde"] }
taplo-common = { version = "0.5.0", path = "../taplo-common" }
taplo-lsp = { version = "0.7.0", path = "../taplo-lsp", default-features = false, optional = true }
time = { version = "0.3", features = ["parsing"] }
toml = "0.7"
tracing = "0.1.29"
tracing-subscriber = { version = "0.3.7", features = ["env-filter"] }
url = "2.2.2"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# `prettydiff` is also a CLI that pulls in `clap` by default
prettydiff = { version = "0.6.1", default-features = false }
ansi_term = "0.12"
atty = "0.2.14"
tokio = { version = "1.24.2", features = [
"sync",
"fs",
"time",
"io-std",
"rt-multi-thread",
"parking_lot",
], default-features = false }
lsp-async-stub = { version = "0.6.0", path = "../lsp-async-stub", features = [
"tokio-tcp",
"tokio-stdio",
] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
tokio = { version = "1.24.2", features = [
"sync",
"parking_lot",
"io-util",
], default-features = false }
[package.metadata.auto-tag]
enabled = true
[[bin]]
name = "taplo"
path = "bin/taplo.rs"