-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
43 lines (38 loc) · 921 Bytes
/
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
40
41
42
43
[package]
name = "scutiger-lfs"
version = "0.3.0"
authors = ["brian m. carlson <[email protected]>"]
description = "a set of Git LFS-related utilities"
repository = "https://github.com/bk2204/scutiger"
license = "MIT"
license-file = "../LICENSE"
include = [
"src/**/*.rs",
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE",
]
rust-version = "1.63"
[lib]
name = "scutiger_lfs"
path = "src/lib.rs"
[[bin]]
name = "git-lfs-transfer"
path = "src/bin/git-lfs-transfer.rs"
[dependencies]
bytes = "0.4"
clap = { version = "^2.32", default-features = false }
digest = "0.9"
hex = "0.4"
git2 = { version = "0.16", default-features = false }
pkg-config = "^0.3"
libc = "^0.2"
scutiger-core = { path = "../scutiger-core", version = "0.3.0", features = [] }
sha2 = "0.9"
tempfile = "3"
chrono = "^0.4"
[target.'cfg(unix)'.dependencies]
passwd = "0.0"
[dev-dependencies]
pretty_assertions = "0.6"