-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (28 loc) · 1.38 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
[package]
name = "exchange-rate-service"
version = "0.1.0"
edition = "2021"
authors = ["velocorner.com"]
description = "Exchange rate service for FX"
homepage = "https://velocorner.com"
keywords = ["exchange", "rates", "fx", "hostorical"]
[dependencies]
# updating to 4.9.0 pulls in extreme amount of deps and the docker image generation will take almost 2 hours
actix-web = { version = "4.6.0", features = ["macros"], default-features = false }
actix-files = "*"
actix-cors = "0.7.0"
reqwest = { version = "0.12.9", features = ["blocking", "json", "native-tls"], default-features = false }
utoipa = { version = "5.2.0", features = ["actix_extras", "time"], default-features = false }
utoipa-swagger-ui = { version = "8.0.3", features = ["actix-web"], default-features = false } # download with reqwest instead of curl
serde = { version = "1.0.214", default-features = false }
serde_json = "1.0.132"
time = { version = "0.3.36", features = ["macros", "parsing"], default-features = false }
log = "0.4.22"
env_logger = { version = "0.11", default-features = false }
cached = { version = "0.54.0", features = ["proc_macro"], default-features = false } # caching results of functions
build_timestamp = "0.1.0"
sysinfo = { version = "0.32.0", features = ["system"], default-features = false }
humansize = "2.1.3"
regex = "1.11.1"
futures = { version = "0.3.31", default-features = false }
futures-executor = "0.3.31"