[package]
edition = "2024"
rust-version = "1.91.0"
name = "icydb-cli"
version = "0.147.27"
authors = ["borovan <84897664+borovan@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Developer CLI tools for IcyDB"
readme = false
license = "Apache-2.0 OR MIT"
repository = "https://github.com/dragginzgame/icydb"
resolver = "2"
[[bin]]
name = "icydb"
path = "src/main.rs"
[dependencies.clap]
version = "4.6.1"
features = [
"derive",
"env",
"error-context",
"help",
"std",
"usage",
]
default-features = false
[dependencies.icydb]
version = "0.147.27"
[dependencies.rustyline]
version = "18.0"
[dependencies.serde_json]
version = "1.0"
[lints.clippy]
doc_markdown = "allow"
empty_line_after_doc_comments = "allow"
missing_const_for_fn = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_inception = "allow"
module_name_repetitions = "allow"
must_use_candidate = "warn"
needless_pass_by_value = "allow"
option_if_let_else = "allow"
redundant_clone = "warn"
redundant_pub_crate = "allow"
semicolon_if_nothing_returned = "warn"
significant_drop_tightening = "allow"
uninlined_format_args = "warn"
unnecessary_cast = "warn"
use_self = "warn"
wildcard_imports = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1