-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
40 lines (37 loc) · 987 Bytes
/
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
[package]
name = "truelayer-rust"
version = "0.2.0"
edition = "2021"
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
chrono = { version = "0.4", features = [ "serde" ] }
reqwest = { version = "0.11", features = [ "json" ] }
reqwest-middleware = "0.2"
reqwest-retry = "0.2"
reqwest-tracing = "0.4"
retry-policies = "0.1"
secrecy = { version = "0.8.0", features = [ "serde" ] }
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
task-local-extensions = "0.1"
thiserror = "1.0"
tokio = { version = "1", features = [ "rt", "macros", "sync" ] }
tracing = "0.1"
truelayer-signing = "0.1"
urlencoding = "2.1"
uuid = { version = "1.1", features = [ "v4" ] }
[dev-dependencies]
actix-web = "4.0.1"
config = "0.13"
dialoguer = "0.10.0"
futures = "0.3"
openssl = "0.10"
rand = "0.8.5"
test-case = "2.0.0"
tokio = { version = "1", features = [ "rt-multi-thread", "macros", "sync" ] }
tracing-subscriber = "0.3"
url = "2.2"
wiremock = "0.5"
[features]
acceptance-tests = []