[package] name = "lfspull" version = "0.3.1" edition = "2021" license = "MIT" authors = ["Volume Graphics GmbH"] repository = "https://github.com/VolumeGraphics/lfspull" homepage = "https://github.com/VolumeGraphics/lfspull" documentation = "https://docs.rs/lfspull" description = "A simple git lfs file pulling implementation in pure rust. Can only pull files / folders and only support token-auth for now." [dependencies] clap = { version = "4.1", features = ["derive", "env"] } thiserror = "1" reqwest = { version="0.11" , features = ["json", "stream"] } http = "0.2" serde = {version ="1.0", features=['derive']} serde_json = "1.0" bytes = "1.4" sha2 = "0.10" hex = "0.4" glob = "0.3" url = "2.3" tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs"] } tracing = "0.1" tracing-subscriber = "0.3" vg_errortools = {version="0.1.0", features = ["tokio"]} enable-ansi-support = "0.2" futures-util = "0.3.30" tempfile = "3.12" [dev-dependencies] cucumber = "0.19.1" tokio = { version = "1", features = ["macros", "rt-multi-thread", "time"] } uuid = { version = "1.2", features = ["serde", "v4"] } [[test]] name = "lfspull" harness = false