[package]
name = "litvc"
version = "1.3.1"
edition = "2021"
rust-version = "1.82"
authors = ["Nervosys"]
description = "Lit - The agentic-first distributed version control system. A complete Git replacement designed for AI agents first and humans second."
license = "AGPL-3.0-or-later"
repository = "https://github.com/nervosys/Lit"
homepage = "https://github.com/nervosys/Lit"
keywords = [
"vcs",
"git",
"quantum-resistant",
"post-quantum",
"version-control",
]
readme = "README.md"
categories = ["command-line-utilities", "development-tools"]
exclude = ["target/", "website/", "tests/", "examples/", "docs/", ".github/"]
[lib]
name = "lit"
[[bin]]
name = "lit"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive", "env"] }
sha2 = "0.10"
sha3 = "0.10"
blake3 = "1.5"
aes = "0.8"
aes-gcm = "0.10"
hmac = "0.12"
pbkdf2 = { version = "0.12", features = [
"simple",
] }
rpassword = "7.3"
flate2 = "1.0"
hex = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
walkdir = "2.4"
chrono = "0.4"
lazy_static = "1.4"
uuid = { version = "1.6", features = ["v4"] }
toml = "0.8"
regex = "1.10"
dirs = "5.0"
shellexpand = "3.1"
pqcrypto-mldsa = "0.1"
pqcrypto-traits = "0.3"
tiny_http = "0.12"
ureq = { version = "2.12", features = [
"json",
] }
zeroize = { version = "1.8", features = ["derive"] }
subtle = "2.6"
sha1 = "0.10"
crc32fast = "1.4"
rayon = "1.10"
memmap2 = "0.9"
rmp-serde = "1.3"
byteorder = "1.5"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.58", features = ["Win32_Storage_FileSystem"] }
[dev-dependencies]
tempfile = "3.8"
rand = "0.8"