1 | [package]
|
2 | name = "rudolfs"
|
3 | version = "0.2.10"
|
4 | authors = ["Jason White <rust@jasonwhite.io>"]
|
5 | edition = "2018"
|
6 | description = """
|
7 | A high-performance, caching Git LFS server with an AWS S3 back-end.
|
8 | """
|
9 | documentation = "https://github.com/jasonwhite/rudolfs"
|
10 | homepage = "https://github.com/jasonwhite/rudolfs"
|
11 | repository = "https://github.com/jasonwhite/rudolfs"
|
12 | readme = "README.md"
|
13 | keywords = ["git-lfs", "s3"]
|
14 | categories = ["command-line-utilities"]
|
15 | license = "MIT"
|
16 |
|
17 | [dependencies]
|
18 | askama = "0.8"
|
19 | bytes = "0.4"
|
20 | chacha = "0.3"
|
21 | derive_more = "0.99"
|
22 | futures = "0.1"
|
23 | futures-backoff = "0.1"
|
24 | generic-array = "0.14"
|
25 | hex = "0.3"
|
26 | http = "0.1"
|
27 | human-size = "0.4"
|
28 | humantime = "2"
|
29 | hyper = "0.12"
|
30 | linked-hash-map = { version = "0.5", features = ["serde_impl"] }
|
31 | log = "0.4"
|
32 | pretty_env_logger = "0.4"
|
33 | serde = { version = "1", features = ["derive"] }
|
34 | serde_json = "1"
|
35 | sha2 = "0.9"
|
36 | structopt = "0.3"
|
37 | tokio = "0.1"
|
38 | url = "1"
|
39 | uuid = { version = "0.8", features = ["v4"] }
|
40 | rand = { version = "0.7", optional = true }
|
41 |
|
42 | [dependencies.rusoto_core]
|
43 | version = "0.40"
|
44 | default_features = false
|
45 | features = ["rustls"]
|
46 |
|
47 | [dependencies.rusoto_s3]
|
48 | version = "0.40"
|
49 | default_features = false
|
50 | features = ["rustls"]
|
51 |
|
52 | [features]
|
53 | default = []
|
54 | # If the "faulty" feature is enabled, random failures are injected into the byte
|
55 | # stream.
|
56 | faulty = ["rand"]
|