-
Notifications
You must be signed in to change notification settings - Fork 39
/
Cargo.toml
75 lines (68 loc) · 1.75 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "rudolfs"
version = "0.3.7"
authors = ["Jason White <[email protected]>"]
edition = "2021"
description = """
A high-performance, caching Git LFS server with an AWS S3 back-end.
"""
documentation = "https://github.com/jasonwhite/rudolfs"
homepage = "https://github.com/jasonwhite/rudolfs"
repository = "https://github.com/jasonwhite/rudolfs"
readme = "README.md"
keywords = ["git-lfs", "s3"]
categories = ["command-line-utilities"]
license = "MIT"
[dependencies]
askama = "0.11"
async-stream = "0.3"
async-trait = "0.1"
backoff = { version = "0.4", features = ["tokio"] }
bytes = "1"
chacha = "0.3"
derive_more = "0.99"
futures = "0.3"
generic-array = "0.14"
hex = "0.4"
http = "0.2"
human-size = "0.4"
humansize = "2"
humantime = "2"
hyper = { version = "0.14", features = ["server", "http1", "http2", "tcp", "stream"] }
linked-hash-map = { version = "0.5", features = ["serde_impl"] }
log = "0.4"
pretty_env_logger = "0.4"
rand = { version = "0.8", optional = true }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
structopt = "0.3"
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["full"] }
url = "2"
uuid = { version = "1.1", features = ["v4"] }
[dev-dependencies]
rand = "0.8"
tempfile = "3"
duct = "0.13"
env_logger = "0.9"
toml = "0.5"
[dependencies.rusoto_core]
version = "0.48"
default_features = false
features = ["rustls"]
[dependencies.rusoto_credential]
version = "0.48"
[dependencies.rusoto_sts]
version = "0.48"
features = ["rustls"]
default_features = false
[dependencies.rusoto_s3]
version = "0.48"
default_features = false
features = ["rustls"]
[features]
default = []
# If the "faulty" feature is enabled, random failures are injected into the byte
# stream.
faulty = ["rand"]