[package]
edition = "2024"
name = "libvctrl"
version = "0.3.0"
authors = ["mroczect <mroczect@proton.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A robust, content-addressed version control engine for arbitrary data, designed for embedding into applications."
homepage = "https://github.com/mroczect/libvcrtl"
documentation = "https://docs.rs/libvcrtl"
readme = "README.md"
keywords = [
"version-control",
"content-addressed",
"merkle-tree",
"cryptography",
"sha512",
]
categories = [
"algorithms",
"data-structures",
"development-tools",
"cryptography",
]
license = "MIT"
repository = "https://github.com/mroczect/libvcrtl"
[lib]
name = "libvctrl"
path = "src/lib.rs"
[[test]]
name = "blob_test"
path = "tests/blob_test.rs"
[[test]]
name = "branch_test"
path = "tests/branch_test.rs"
[[test]]
name = "checkout_test"
path = "tests/checkout_test.rs"
[[test]]
name = "cherry_pick_test"
path = "tests/cherry_pick_test.rs"
[[test]]
name = "commit_test"
path = "tests/commit_test.rs"
[[test]]
name = "diff_test"
path = "tests/diff_test.rs"
[[test]]
name = "merge_test"
path = "tests/merge_test.rs"
[[test]]
name = "revert_conflict_test"
path = "tests/revert_conflict_test.rs"
[[test]]
name = "sign_tests"
path = "tests/sign_tests.rs"
[[test]]
name = "signing_commit_test"
path = "tests/signing_commit_test.rs"
[[test]]
name = "tag_commit_test"
path = "tests/tag_commit_test.rs"
[[test]]
name = "tag_tests"
path = "tests/tag_tests.rs"
[[test]]
name = "tree_test"
path = "tests/tree_test.rs"
[dependencies.chrono]
version = "0.4.45"
features = ["serde"]
[dependencies.ed25519-dalek]
version = "3.0.0"
features = ["rand_core"]
[dependencies.hex]
version = "0.4"
[dependencies.rand]
version = "0.8"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.sha2]
version = "0.11.0"
[dependencies.thiserror]
version = "2.0.19"
[dev-dependencies.tempfile]
version = "3.27.0"
[lints.clippy]
wildcard_imports = "warn"