-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (33 loc) · 1.13 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
[package]
name = "rplaid"
version = "0.5.0-alpha.0"
authors = ["Allan Calix <allan@acx.dev>"]
edition = "2021"
description = """
An async client library for Plaid APIs.
"""
homepage = "https://github.com/allancalix/rplaid"
documentation = "https://docs.rs/rplaid"
repository = "https://github.com/allancalix/rplaid"
readme = "README.md"
keywords = ["plaid", "api", "client", "async", "finance"]
categories = ["api-bindings"]
exclude = ["/.github/*"]
license = "MIT"
[features]
default = ["streams"]
streams = ["async-stream", "futures-core"]
decimal = ["rust_decimal"]
[dependencies]
async-stream = { version = "0.3.2", optional = true }
futures-core = { version = "0.3.17", optional = true }
hyper = { version = "0.14", default-fatures = false, features = ["client", "http1"] }
hyper-tls = "0.5"
rust_decimal = { version = "1.26", optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
[dev-dependencies]
futures-lite = "1.12"
insta = { version = "1.19", features = ["redactions", "json"] }
tokio = { version = "1.20", default-features = false, features = ["macros", "test-util", "rt-multi-thread"] }