[package]
edition = "2024"
rust-version = "1.92"
name = "sosaku-cli"
version = "0.4.0"
authors = ["hypergonial"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for the sosaku JSON Query language"
homepage = "https://github.com/hypergonial/sosaku"
readme = "README.md"
license = "MIT"
repository = "https://github.com/hypergonial/sosaku"
[[bin]]
name = "sosaku"
path = "src/main.rs"
[dependencies.clap]
version = "4.6"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sosaku]
version = "0.4.0"
features = ["serde"]
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
enum_glob_use = "deny"
future_not_send = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
option_if_let_else = "allow"
unwrap_used = "deny"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.significant_drop_tightening]
level = "allow"
priority = 1
[lints.rust]
unsafe_code = "forbid"