[package]
edition = "2024"
rust-version = "1.95"
name = "krypt-core"
version = "0.2.0"
authors = ["mxaddict <mxaddict@kryptic.sh>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core engine for the `krypt` dotfiles manager: config, paths, copy, manifest, runner."
homepage = "https://github.com/kryptic-sh/krypt"
readme = "README.md"
license = "MIT"
repository = "https://github.com/kryptic-sh/krypt"
[lib]
name = "krypt_core"
path = "src/lib.rs"
[[test]]
name = "copy_engine"
path = "tests/copy_engine.rs"
[[test]]
name = "include_fixtures"
path = "tests/include_fixtures.rs"
[[test]]
name = "parse_fixtures"
path = "tests/parse_fixtures.rs"
[dependencies.dialoguer]
version = "0.11"
features = [
"editor",
"fuzzy-select",
"history",
"password",
]
default-features = false
[dependencies.gix]
version = "0.83.0"
features = [
"blocking-http-transport-reqwest-rust-tls",
"worktree-mutation",
"status",
"revision",
]
[dependencies.glob]
version = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "1.1"
[dependencies.tracing]
version = "0.1"
[dependencies.which]
version = "7"
[dev-dependencies.smallvec]
version = "1"
[dev-dependencies.tempfile]
version = "3"