[package]
edition = "2024"
rust-version = "1.95"
name = "spgctl"
version = "7.9.31"
authors = ["GOLIA K.K. <lihao@golia.jp>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SPG command-line client — speaks the self-built wire protocol."
readme = false
keywords = [
"spg",
"cli",
"database",
"client",
]
categories = [
"command-line-utilities",
"database",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/goliajp/spg"
[[bin]]
name = "spg"
path = "src/main.rs"
[[test]]
name = "e2e_revert"
path = "tests/e2e_revert.rs"
[[test]]
name = "e2e_wal_lint"
path = "tests/e2e_wal_lint.rs"
[[test]]
name = "perf_gate"
path = "tests/perf_gate.rs"
[[bench]]
name = "backup"
path = "benches/backup.rs"
harness = false
[dependencies.spg-crypto]
version = "7.9"
[dependencies.spg-engine]
version = "7.9"
[dependencies.spg-storage]
version = "7.9"
[dependencies.spg-wire]
version = "7.9"
[dev-dependencies.criterion]
version = "0.5"
features = ["cargo_bench_support"]
default-features = false
[dev-dependencies.spg-crypto]
version = "7.9"
[dev-dependencies.spg-engine]
version = "7.9"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unsafe_code = "deny"
unused_must_use = "deny"