[package]
edition = "2024"
name = "libvctrl_handler"
version = "1.3.0"
authors = ["mroczect"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fundamental contracts for building a version control system – no implementations, only traits and types"
homepage = "https://github.com/mroczect/libvctrl"
documentation = "https://docs.rs/libvctrl"
readme = "README.md"
keywords = [
"version-control",
"vcs",
"library",
"traits",
]
categories = [
"development-tools",
"data-structures",
]
license = "MIT"
repository = "https://github.com/mroczect/libvctrl"
resolver = "2"
[lib]
name = "libvctrl_handler"
path = "src/lib.rs"
[[test]]
name = "hash_validation"
path = "tests/hash_validation.rs"
[[test]]
name = "type_validation"
path = "tests/type_validation.rs"
[lints.clippy]
cargo = "warn"
nursery = "warn"
pedantic = "warn"
[lints.rust]
missing_docs = "deny"
rust_2018_idioms = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unsafe_code = "forbid"
unused_qualifications = "warn"
unused_results = "warn"