-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
47 lines (40 loc) · 912 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
41
42
43
44
45
46
47
[package]
name = "plaid"
edition = "2021"
version = "9.0.0"
description = "Plaid client, generated from the OpenAPI spec."
homepage = "https://github.com/libninjacom/plaid-rs"
documentation = "https://docs.rs/plaid"
readme = "README.md"
license = "MIT"
repository = "https://github.com/libninjacom/plaid-rs"
[dependencies]
base64 = "0.21.0"
futures = "0.3.25"
httpclient = "0.21.3"
rust_decimal_macros = "1.33"
serde_json = "1.0.81"
[dependencies.chrono]
version = "0.4.26"
features = ["serde"]
[dependencies.rust_decimal]
version = "1.33"
features = ["serde-with-str"]
default-features = false
[dependencies.serde]
version = "1.0.137"
features = ["derive"]
[dev-dependencies.tokio]
version = "1.18.2"
features = ["full"]
[lib]
path = "src/lib.rs"
name = "plaid"
doctest = false
edition = "2021"
crate-type = ["rlib"]
required-features = []
[profile.ci]
debug = false
incremental = false
inherits = "dev"