[package]
edition = "2021"
name = "sklink"
version = "0.2.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Install skills into platform directories via a local store and symlinks"
documentation = "https://docs.rs/sklink"
readme = "README.md"
license = "MIT"
[lib]
name = "sklink"
path = "src/lib.rs"
[[bin]]
name = "sklink"
path = "src/main.rs"
[[test]]
name = "cli_arg_rules"
path = "tests/cli_arg_rules.rs"
[[test]]
name = "cli_completions"
path = "tests/cli_completions.rs"
[[test]]
name = "cli_init"
path = "tests/cli_init.rs"
[[test]]
name = "cli_list"
path = "tests/cli_list.rs"
[[test]]
name = "cli_output"
path = "tests/cli_output.rs"
[[test]]
name = "cli_symlink_install"
path = "tests/cli_symlink_install.rs"
[[test]]
name = "unit_config"
path = "tests/unit_config.rs"
[[test]]
name = "unit_git_source"
path = "tests/unit_git_source.rs"
[[test]]
name = "unit_init"
path = "tests/unit_init.rs"
[[test]]
name = "unit_install"
path = "tests/unit_install.rs"
[[test]]
name = "unit_path_utils"
path = "tests/unit_path_utils.rs"
[[test]]
name = "unit_skills"
path = "tests/unit_skills.rs"
[dependencies.clap]
version = "4.5.4"
features = ["derive"]
[dependencies.clap_complete]
version = "4.6.1"
[dependencies.serde]
version = "1.0.203"
features = ["derive"]
[dependencies.thiserror]
version = "1.0.61"
[dependencies.toml]
version = "0.8.13"
[dev-dependencies.tempfile]
version = "3.10.1"