[package]
edition = "2024"
name = "vcs-core"
version = "0.2.0"
authors = ["Anton Zhelezniakou"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unified facade over vcs-git and vcs-jj: repo detection and a backend-agnostic VCS handle."
readme = "README.md"
license = "MIT"
repository = "https://github.com/ZelAnton/vcs-toolkit-rs"
[features]
tracing = [
"vcs-git/tracing",
"vcs-jj/tracing",
]
[lib]
name = "vcs_core"
path = "src/lib.rs"
[[test]]
name = "repo"
path = "tests/repo.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.processkit]
version = "0.6"
[dependencies.vcs-git]
version = "0.4"
[dependencies.vcs-jj]
version = "0.4"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]