[package]
edition = "2024"
name = "nanograph-cli"
version = "1.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for NanoGraph — the embedded property graph database. No server, schema-as-code."
readme = "README.md"
license = "MIT"
repository = "https://github.com/nanograph/nanograph"
resolver = "2"
[[bin]]
name = "nanograph"
path = "src/main.rs"
[[test]]
name = "bootstrap_and_env"
path = "tests/bootstrap_and_env.rs"
[[test]]
name = "bug_regressions"
path = "tests/bug_regressions.rs"
[[test]]
name = "config_and_aliases"
path = "tests/config_and_aliases.rs"
[[test]]
name = "config_failures"
path = "tests/config_failures.rs"
[[test]]
name = "display_formats"
path = "tests/display_formats.rs"
[[test]]
name = "docs_and_output"
path = "tests/docs_and_output.rs"
[[test]]
name = "embed_command"
path = "tests/embed_command.rs"
[[test]]
name = "graph_mirror"
path = "tests/graph_mirror.rs"
[[test]]
name = "load_modes_and_export"
path = "tests/load_modes_and_export.rs"
[[test]]
name = "revops_admin_and_cdc"
path = "tests/revops_admin_and_cdc.rs"
[[test]]
name = "revops_workflows"
path = "tests/revops_workflows.rs"
[[test]]
name = "runtime_values"
path = "tests/runtime_values.rs"
[[test]]
name = "schema_analysis"
path = "tests/schema_analysis.rs"
[[test]]
name = "starwars_export_roundtrip"
path = "tests/starwars_export_roundtrip.rs"
[[test]]
name = "starwars_workflows"
path = "tests/starwars_workflows.rs"
[dependencies.ariadne]
version = "0.4"
[dependencies.arrow-array]
version = "57"
[dependencies.arrow-cast]
version = "57"
features = ["prettyprint"]
[dependencies.arrow-schema]
version = "57"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.color-eyre]
version = "0.6"
[dependencies.comfy-table]
version = "7"
[dependencies.datafusion-common]
version = "52"
[dependencies.nanograph]
version = "1.1.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
]
[dependencies.toml]
version = "0.9"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dev-dependencies.tempfile]
version = "3"