[package]
edition = "2024"
name = "hyalo-cli"
version = "0.7.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for exploring and managing Markdown knowledge bases with YAML frontmatter"
readme = "README.md"
keywords = [
"cli",
"yaml",
"frontmatter",
"markdown",
"obsidian",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/ractive/hyalo"
[lib]
name = "hyalo_cli"
path = "src/lib.rs"
[[bin]]
name = "hyalo"
path = "src/main.rs"
[[test]]
name = "e2e_append"
path = "tests/e2e_append.rs"
[[test]]
name = "e2e_backlinks"
path = "tests/e2e_backlinks.rs"
[[test]]
name = "e2e_config"
path = "tests/e2e_config.rs"
[[test]]
name = "e2e_count"
path = "tests/e2e_count.rs"
[[test]]
name = "e2e_errors"
path = "tests/e2e_errors.rs"
[[test]]
name = "e2e_find"
path = "tests/e2e_find.rs"
[[test]]
name = "e2e_help"
path = "tests/e2e_help.rs"
[[test]]
name = "e2e_hints"
path = "tests/e2e_hints.rs"
[[test]]
name = "e2e_index"
path = "tests/e2e_index.rs"
[[test]]
name = "e2e_init"
path = "tests/e2e_init.rs"
[[test]]
name = "e2e_jq"
path = "tests/e2e_jq.rs"
[[test]]
name = "e2e_links"
path = "tests/e2e_links.rs"
[[test]]
name = "e2e_mv"
path = "tests/e2e_mv.rs"
[[test]]
name = "e2e_properties"
path = "tests/e2e_properties.rs"
[[test]]
name = "e2e_quiet"
path = "tests/e2e_quiet.rs"
[[test]]
name = "e2e_read"
path = "tests/e2e_read.rs"
[[test]]
name = "e2e_remove"
path = "tests/e2e_remove.rs"
[[test]]
name = "e2e_set"
path = "tests/e2e_set.rs"
[[test]]
name = "e2e_short_flags"
path = "tests/e2e_short_flags.rs"
[[test]]
name = "e2e_site_prefix"
path = "tests/e2e_site_prefix.rs"
[[test]]
name = "e2e_suggest"
path = "tests/e2e_suggest.rs"
[[test]]
name = "e2e_summary"
path = "tests/e2e_summary.rs"
[[test]]
name = "e2e_tags"
path = "tests/e2e_tags.rs"
[[test]]
name = "e2e_task"
path = "tests/e2e_task.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4.6.0"
features = ["derive"]
[dependencies.dunce]
version = "1"
[dependencies.globset]
version = "0.4"
[dependencies.hyalo-core]
version = "0.7.3"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.jaq-core]
version = "3.0.0"
[dependencies.jaq-json]
version = "2.0.0"
features = ["serde"]
[dependencies.jaq-std]
version = "3.0.0"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = [
"derive",
"derive",
]
[dependencies.serde-saphyr]
version = "0.0.22"
[dependencies.serde_json]
version = "1.0.149"
[dependencies.strsim]
version = "0.11"
[dependencies.toml]
version = "1"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
return_self_not_must_use = "allow"
struct_excessive_bools = "allow"
too_many_lines = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1