yui-cli 0.7.19

Target-as-truth dotfiles manager: edit your live configs, source repo updates automatically via hardlink/junction/symlink.
Documentation
[package]
name = "yui-cli"
version = "0.7.19"
edition = "2024"
rust-version = "1.85"
description = "Target-as-truth dotfiles manager: edit your live configs, source repo updates automatically via hardlink/junction/symlink."
authors = ["yukimemi"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/yukimemi/yui"
homepage = "https://github.com/yukimemi/yui"
keywords = ["dotfiles", "config", "symlink", "hardlink", "junction"]
categories = ["command-line-utilities", "config"]
include = [
    "src/**/*.rs",
    "assets/icon.svg",
    "assets/logo.svg",
    "assets/logo-dark.svg",
    "Cargo.toml",
    "README.md",
    "LICENSE",
]

[[bin]]
name = "yui"
path = "src/main.rs"

[lib]
name = "yui"
path = "src/lib.rs"

[dependencies]
age = { version = "0.11.3", features = ["cli-common", "plugin"] }
anyhow = "1.0.102"
base64 = "0.22.1"
camino = { version = "1.2.2", features = ["serde1"] }
clap = { version = "4.6.1", features = ["derive", "env"] }
clap_complete = "4.6.5"
globset = "0.4.18"
ignore = "0.4.25"
indicatif = "0.18.4"
jiff = { version = "0.2.24", features = ["serde"] }
# Shared self-update library (`yui self-update`). Pinned exact to
# match rvpm / renri; kaishin's surface is still 0.x.
kaishin = "0.3.0"
owo-colors = "4.3.0"
same-file = "1.0.6"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
sha2 = "0.11.0"
similar = "3.1.1"
tera = "1.20.1"
thiserror = "2.0.18"
# Minimal runtime needed by kaishin's async API; we drive it from a
# blocking `current_thread` runtime in `updater::run_self_update`
# so the rest of yui can stay sync. `rt` is the only feature we
# need — `updater` doesn't use `#[tokio::main]` / `tokio::test` /
# the `macros` family (PR #74 review by gemini-code-assist).
tokio = { version = "1.52.3", features = ["rt"] }
toml = "1.1.2"
toml_edit = "0.25.11"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
whoami = "2"

[target.'cfg(windows)'.dependencies]
junction = "2.0.0"

[dev-dependencies]
assert_cmd = "2.2.2"
assert_fs = "1.1.3"
predicates = "3.1.4"
tempfile = "3.27.0"

[profile.release]
lto = true
codegen-units = 1
strip = true