[package]
edition = "2024"
name = "libvctrl"
version = "2.0.0"
authors = ["mroczect"]
build = false
exclude = [
".github/*",
"tests/*",
"benches/*",
"*.bak",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A precision toolkit for building custom version control systems"
homepage = "https://github.com/mroczect/libvctrl"
documentation = "https://docs.rs/libvctrl"
readme = "README.md"
keywords = [
"version-control",
"vcs",
"git",
"merkle",
"sdk",
]
categories = [
"development-tools",
"data-structures",
"cryptography::cryptocurrencies",
]
license = "MIT"
repository = "https://github.com/mroczect/libvctrl"
resolver = "2"
[features]
default = ["sha384"]
opt_size = ["libvctrl_sha512/opt_size"]
sha384 = ["libvctrl_sha512/sha384"]
[lib]
name = "libvctrl"
path = "src/lib.rs"
[dependencies.libvctrl_core]
version = "2.0.0"
[dependencies.libvctrl_handler]
version = "4.0.0"
[dependencies.libvctrl_sha512]
version = "2.0.0"
default-features = false
[dev-dependencies.proptest]
version = "1.11.0"
[lints.clippy]
all = "deny"
cargo = "deny"
expect_used = "deny"
missing_const_for_fn = "deny"
nursery = "deny"
panic = "deny"
pedantic = "deny"
redundant_clone = "deny"
unwrap_used = "deny"
[lints.rust]
missing_docs = "deny"
rust_2018_idioms = "deny"
unreachable_pub = "deny"
unsafe_code = "forbid"
unused_qualifications = "deny"