[package]
edition = "2024"
rust-version = "1.88"
name = "vtcode-vim"
version = "0.105.5"
authors = ["Vinh Nguyen <vinhnguyen2308@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reusable Vim-style prompt editing engine for VT Code surfaces"
homepage = "https://github.com/vinhnx/vtcode"
documentation = "https://docs.rs/vtcode-vim"
readme = "README.md"
keywords = [
"vim",
"editing",
"terminal",
"tui",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/vinhnx/vtcode"
resolver = "2"
[lib]
name = "vtcode_vim"
path = "src/lib.rs"
[dependencies.crossterm]
version = "0.29"
[lints.clippy]
await_holding_lock = "warn"
await_holding_refcell_ref = "warn"
dbg_macro = "warn"
expl_impl_clone_on_copy = "warn"
infallible_try_from = "warn"
invalid_upcast_comparisons = "warn"
iter_not_returning_iterator = "warn"
let_underscore_future = "warn"
lossy_float_literal = "warn"
mem_forget = "warn"
multiple_unsafe_ops_per_block = "warn"
rc_mutex = "warn"
todo = "warn"
undocumented_unsafe_blocks = "warn"
unimplemented = "warn"
unnecessary_safety_comment = "warn"
unnecessary_safety_doc = "warn"
[lints.rust]
trivial_numeric_casts = "warn"
unsafe_code = "warn"
unstable_features = "warn"
unused_extern_crates = "warn"
unused_import_braces = "warn"
unused_qualifications = "warn"
unused_results = "allow"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(tarpaulin)"]