-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
60 lines (52 loc) · 1.49 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
[package]
name = "nft_image_proxy"
version = "1.5.0"
repository = "https://github.com/Cryptonomic/ImageProxy"
authors = ["Cryptonomic Inc."]
edition = "2018"
build = "build.rs"
include = [ "src/" ]
[build-dependencies]
built = { version = "0.7.1", features = ["git2"] }
[dependencies]
hyper = { version = "1.2.0", features = ["full"] }
http-body-util = "0.1"
hyper-util = { version = "0.1", features = ["full"] }
hyper-timeout = "0.5.1"
tokio = { version = "1", features = ["full"] }
log = "0.4"
log4rs = "1"
hocon = "0.9"
sha2 = "0.10"
base64 = "0.22.0"
hyper-tls = "0.6.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = "0.4"
uuid = { version = "1.7.0", features = ["serde", "v4"] }
prometheus = { version = "0.13", features = ["process"] }
lazy_static = "1.4"
async-trait = "0.1"
image = "0.24"
dns-lookup = "2.0.4"
anyhow = "1.0"
moka = {version="0.12.5", features = ["sync", "future"]}
# deps for db support
bb8 = "0.8"
bb8-postgres = "0.8"
deadpool-postgres = "0.12.1"
postgres-native-tls = "0.5"
native-tls = "0.2"
tokio-postgres = { version="0.7", features=["with-chrono-0_4"] }
# deps for aws
aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
aws-sdk-rekognition = "1.16.0"
aws-sdk-s3 = "1.17.0"
aws-types = "1.1.7"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = { version="0.5", features=[ "background_threads_runtime_support", "background_threads"] }
[dev-dependencies]
rand = "0.8.4"
[profile.release]
lto = true
[features]