-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (42 loc) · 1.18 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
[package]
name = "dlt-shortener"
version = "0.0.1"
edition = "2021"
license-file = "LICENSE"
[lib]
path = "src/lib.rs"
name = "dlt_shortener"
[[bin]]
path = "src/main.rs"
name = "dlt_shortener"
[features]
default = []
unit_test = []
aws_test = []
integration_test = []
[dependencies]
actix-web = { version = "4.1.0", features = ["rustls"] }
aws-config = "0.47.0"
aws-sdk-s3 = "0.17.0"
base64 = "0.13.0"
chrono = "0.4.22"
config = { version = "0.13.1", default-features = false, features = ["toml"] }
dotenv = "0.15.0"
log = "0.4.16"
redis = { version = "0.21.5", features = ["aio", "tokio-comp"] }
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
rustls = "0.20.6"
rustls-pemfile = "1.0.0"
serde = { version = "1.0.140", features = [ "derive" ] }
serde-aux = "3"
serde_json = "1.0.82"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tracing = "0.1.35"
tracing-actix-web = "0.6.0"
tracing-attributes = "0.1.22"
tracing-core = "0.1.10"
tracing-log = "0.1.3"
tracing-subscriber = { version = "0.3.15", features = ["env-filter", "std", "fmt", "json"] }
url = { version = "2.2.2", features = ["serde"] }
[dev-dependencies]
tempfile = "3.3.0"