[package]
edition = "2021"
name = "link-cli"
version = "0.2.2"
authors = ["link-foundation"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A CLI tool for links manipulation"
readme = "README.md"
keywords = [
"links",
"doublets",
"cli",
"database",
]
categories = [
"command-line-utilities",
"database",
]
license = "Unlicense"
repository = "https://github.com/link-foundation/link-cli"
[lib]
name = "link_cli"
path = "src/lib.rs"
[[bin]]
name = "clink"
path = "src/main.rs"
[[test]]
name = "changes_simplifier_tests"
path = "tests/changes_simplifier_tests.rs"
[[test]]
name = "cli_arguments_tests"
path = "tests/cli_arguments_tests.rs"
[[test]]
name = "cli_export_tests"
path = "tests/cli_export_tests.rs"
[[test]]
name = "cli_import_tests"
path = "tests/cli_import_tests.rs"
[[test]]
name = "cli_named_types_tests"
path = "tests/cli_named_types_tests.rs"
[[test]]
name = "dependency_basis_tests"
path = "tests/dependency_basis_tests.rs"
[[test]]
name = "issue62_review_coverage_tests"
path = "tests/issue62_review_coverage_tests.rs"
[[test]]
name = "link_storage_tests"
path = "tests/link_storage_tests.rs"
[[test]]
name = "link_tests"
path = "tests/link_tests.rs"
[[test]]
name = "lino_database_input_tests"
path = "tests/lino_database_input_tests.rs"
[[test]]
name = "lino_link_tests"
path = "tests/lino_link_tests.rs"
[[test]]
name = "named_types_decorator_tests"
path = "tests/named_types_decorator_tests.rs"
[[test]]
name = "parser_tests"
path = "tests/parser_tests.rs"
[[test]]
name = "pinned_types_decorator_tests"
path = "tests/pinned_types_decorator_tests.rs"
[[test]]
name = "query_processor_csharp_parity_tests"
path = "tests/query_processor_csharp_parity_tests.rs"
[[test]]
name = "query_processor_tests"
path = "tests/query_processor_tests.rs"
[[test]]
name = "unicode_sequence_converter_tests"
path = "tests/unicode_sequence_converter_tests.rs"
[[test]]
name = "unicode_string_storage_tests"
path = "tests/unicode_string_storage_tests.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.doublets]
version = "0.3.0"
[dependencies.links-notation]
version = "0.13.0"
[dependencies.lino-arguments]
version = "0.3.0"
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.tempfile]
version = "3.27.0"