|
1 | 1 | [package]
|
2 | 2 | name = "nft_image_proxy"
|
3 |
| -version = "2.0.0" |
| 3 | +version = "1.5.0" |
4 | 4 | repository = "https://github.com/Cryptonomic/ImageProxy"
|
5 | 5 | authors = ["Cryptonomic Inc."]
|
6 | 6 | edition = "2018"
|
7 | 7 | build = "build.rs"
|
8 | 8 | include = [ "src/" ]
|
9 | 9 |
|
10 | 10 | [build-dependencies]
|
11 |
| -built = { version = "0.5", features = ["git2"] } |
| 11 | +built = { version = "0.7.1", features = ["git2"] } |
12 | 12 |
|
13 | 13 | [dependencies]
|
14 |
| -hyper = { version = "0.14", features = ["full"] } |
15 |
| -hyper-timeout = "0.4" |
| 14 | +hyper = { version = "1.2.0", features = ["full"] } |
| 15 | +http-body-util = "0.1" |
| 16 | +hyper-util = { version = "0.1", features = ["full"] } |
| 17 | +hyper-timeout = "0.5.1" |
16 | 18 | tokio = { version = "1", features = ["full"] }
|
17 | 19 | log = "0.4"
|
18 | 20 | log4rs = "1"
|
19 | 21 | hocon = "0.9"
|
20 | 22 | sha2 = "0.10"
|
21 |
| -base64 = "0.13" |
22 |
| -hyper-tls = "0.5" |
| 23 | +base64 = "0.22.0" |
| 24 | +hyper-tls = "0.6.0" |
23 | 25 | serde = { version = "1", features = ["derive"] }
|
24 | 26 | serde_json = "1"
|
25 | 27 | chrono = "0.4"
|
26 |
| -uuid = { version = "1.1", features = ["serde", "v4"] } |
| 28 | +uuid = { version = "1.7.0", features = ["serde", "v4"] } |
27 | 29 | prometheus = { version = "0.13", features = ["process"] }
|
28 | 30 | lazy_static = "1.4"
|
29 | 31 | async-trait = "0.1"
|
30 | 32 | image = "0.24"
|
31 |
| -dns-lookup = "1" |
| 33 | +dns-lookup = "2.0.4" |
32 | 34 | anyhow = "1.0"
|
33 |
| -moka = "0.8" |
| 35 | +moka = {version="0.12.5", features = ["sync", "future"]} |
34 | 36 |
|
35 | 37 | # deps for db support
|
36 | 38 | bb8 = "0.8"
|
37 | 39 | bb8-postgres = "0.8"
|
38 |
| -deadpool-postgres = "0.10" |
| 40 | +deadpool-postgres = "0.12.1" |
39 | 41 | postgres-native-tls = "0.5"
|
40 | 42 | native-tls = "0.2"
|
41 | 43 | tokio-postgres = { version="0.7", features=["with-chrono-0_4"] }
|
42 | 44 |
|
43 | 45 | # deps for aws
|
44 |
| -aws-config = "0.12" |
45 |
| -aws-sdk-rekognition = "0.12" |
46 |
| -aws-sdk-s3 = "0.12" |
47 |
| -aws-types = "0.12" |
| 46 | +aws-config = { version = "1.1.7", features = ["behavior-version-latest"] } |
| 47 | +aws-sdk-rekognition = "1.16.0" |
| 48 | +aws-sdk-s3 = "1.17.0" |
| 49 | +aws-types = "1.1.7" |
48 | 50 |
|
49 | 51 | [target.'cfg(not(target_env = "msvc"))'.dependencies]
|
50 | 52 | tikv-jemallocator = { version="0.5", features=[ "background_threads_runtime_support", "background_threads"] }
|
|
0 commit comments