[package]
edition = "2024"
rust-version = "1.92"
name = "reovim-client-cli"
version = "0.14.4"
authors = ["ds1sqe(dukim) <ds1sqe@mensakorea.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reovim CLI client - command-line interface using gRPC v2"
homepage = "https://github.com/ds1sqe/reovim"
readme = false
license = "AGPL-3.0-only"
repository = "https://github.com/ds1sqe/reovim"
resolver = "2"
[lib]
name = "reovim_client_cli"
path = "src/lib.rs"
[dependencies.clap]
version = "4"
features = [
"derive",
"derive",
]
[dependencies.reovim-protocol]
version = "0.14.4"
features = ["grpc"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1.25"
features = [
"full",
"full",
]
[dependencies.tonic]
version = "0.12"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1.25"
features = [
"full",
"rt",
"macros",
]
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
unsafe_code = "warn"
warnings = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage_nightly)"]