-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (36 loc) · 969 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
[package]
name = "jquants-api-client"
version = "0.1.0"
edition = "2021"
authors = ["ktanaka101 <kentanaka101@gmail.com>"]
description = "A Rust client for the J-Quants API, providing seamless access to financial data."
license = "MIT"
repository = "https://github.com/ktanaka101/jquants-api-client-rust"
documentation = "https://docs.rs/jquants-api-client"
[lints.rust]
missing_docs = "deny"
[dependencies]
reqwest = { version = "^0.12", features = ["json"] }
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
serde_plain = "^1.0"
thiserror = "^2.0"
tracing = "^0.1"
chrono = "^0.4"
tokio = { version = "^1.41", features = ["full"] }
futures = "0.3"
async-stream = "0.3"
polars = { version = "^0.44", optional = true, features = [
"dtype-date",
"dtype-time",
"dtype-categorical",
"strings",
"lazy",
] }
[dev-dependencies]
pretty_assertions = "1.4"
maplit = "1.0"
expect-test = "1.5"
[features]
default = []
polars = ["dep:polars"]