-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (36 loc) · 1.13 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[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