-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
32 lines (28 loc) · 979 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
[package]
name = "alpha_vantage"
version = "0.11.0"
authors = ["Saurav Sharma <[email protected]>"]
homepage = "https://github.com/iamsauravsharma/alpha_vantage"
repository = "https://github.com/iamsauravsharma/alpha_vantage"
description = "Rust Wrapper/Crate built for AlphaVantage API"
license = "MIT"
readme = "README.MD"
edition = "2021"
keywords = ["alphavantage", "currency", "finance", "stock", "exchange"]
categories = ["api-bindings", "web-programming::http-client"]
[dependencies]
async-trait = "0.1.68"
reqwest = { version = "0.12.7", default-features = false, optional = true, features = [
"rustls-tls",
] }
serde = { version = "1.0.185", features = ["derive"] }
serde_json = "1.0.96"
thiserror = "1.0.40"
[dev-dependencies]
tokio = { version = "1.28.1", features = ["macros", "rt-multi-thread"] }
[features]
default = ["reqwest-client"]
reqwest-client = ["reqwest"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]