[package]
edition = "2024"
name = "git-lfs"
version = "0.2.0"
authors = ["Patrick Elsen <pelsen@xfbs.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Git LFS — large file storage for git, reimplemented in Rust"
homepage = "https://gitlab.com/rustutils/git-lfs"
readme = "README.md"
keywords = [
"git",
"lfs",
"git-lfs",
"vcs",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://gitlab.com/rustutils/git-lfs"
[[bin]]
name = "git-lfs"
path = "src/main.rs"
[[bin]]
name = "lfstest-testutils"
path = "src/bin/lfstest-testutils.rs"
[[test]]
name = "end_to_end"
path = "tests/end_to_end.rs"
[dependencies.clap]
version = "4"
features = [
"derive",
"wrap_help",
]
[dependencies.git-lfs-api]
version = "0.2.0"
[dependencies.git-lfs-creds]
version = "0.2.0"
[dependencies.git-lfs-filter]
version = "0.2.0"
[dependencies.git-lfs-git]
version = "0.2.0"
[dependencies.git-lfs-pointer]
version = "0.2.0"
[dependencies.git-lfs-store]
version = "0.2.0"
[dependencies.git-lfs-transfer]
version = "0.2.0"
[dependencies.globset]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha1]
version = "0.10"
[dependencies.sha2]
version = "0.10"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["rt-multi-thread"]
[dependencies.url]
version = "2"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.wiremock]
version = "0.6"