[package]
edition = "2024"
rust-version = "1.88"
name = "runifold-cli"
version = "0.7.1"
authors = ["ZYX121212 <2636915543@qq.com>"]
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Read-only operational CLI for Runifold artifacts and durable journals"
homepage = "https://github.com/ZYX121212/runifold"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ZYX121212/runifold"
resolver = "2"
[[bin]]
name = "runifold"
path = "src/main.rs"
doc = false
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.anyhow]
version = "1.0.104"
[dependencies.clap]
version = "4.6.4"
features = [
"derive",
"env",
]
[dependencies.runifold-core]
version = "0.7.1"
[dependencies.runifold-ops]
version = "0.7.1"
[dependencies.runifold-store-postgres]
version = "0.7.1"
[dependencies.runifold-store-sqlite]
version = "0.7.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1.53.1"
features = [
"rt-multi-thread",
"macros",
]
[lints.clippy]
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_docs = "warn"
unsafe_code = "forbid"