[package]
edition = "2024"
name = "graphforge-cli"
version = "0.5.1"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GraphForge command-line interface"
readme = false
license = "Apache-2.0"
license-file = "LICENSE"
repository = "https://github.com/CurateLabs/graphforge"
resolver = "2"
[lib]
name = "graphforge_cli"
path = "src/lib.rs"
[[bin]]
name = "gf"
path = "src/main.rs"
[[test]]
name = "checkpoints"
path = "tests/checkpoints.rs"
[[test]]
name = "portable"
path = "tests/portable.rs"
[[test]]
name = "repository"
path = "tests/repository.rs"
[dependencies.arrow]
version = "58"
features = ["prettyprint"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.graphforge-api]
version = "0.5.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.uuid]
version = "1"
features = [
"v5",
"v7",
"serde",
]
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unused_must_use = "deny"
[lints.rust.future_incompatible]
level = "deny"
priority = -1
[lints.rust.nonstandard_style]
level = "deny"
priority = -1