taplo-cli 0.7.2

A CLI for Taplo TOML toolkit
Documentation
[package]
authors = ["tamasfe"]
description = "A CLI for Taplo TOML toolkit"
license = "MIT"
edition = "2021"
name = "taplo-cli"
version = "0.7.2"
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"] }
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.11.0", path = "../taplo", features = ["serde"] }
taplo-common = { version = "0.3.0", path = "../taplo-common" }
taplo-lsp = { version = "0.5.0", path = "../taplo-lsp", default-features = false, optional = true }
time = { version = "0.3", features = ["parsing"] }
toml = "0.5"
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 = "0.6.1"
ansi_term = "0.12"
atty = "0.2.14"
tokio = { version = "1.19.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.19.2", features = [
  "sync",
  "parking_lot",
  "io-util",
], default-features = false }

[package.metadata.auto-tag]
enabled = true

[[bin]]
name = "taplo"
path = "bin/taplo.rs"