-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
56 lines (51 loc) · 1.39 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "schwab_api"
version = "0.0.3-rc.1"
license = "MIT"
readme = "README.md"
repository = "https://github.com/z-Wind/schwab_api"
description = "An unofficial rust library for Schwab API"
keywords = ["schwab", "api"]
categories = ["api-bindings"]
authors = ["zWindr <zpsyhapcst@gmail.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = { version = "3.11", features = ["chrono_0_4"] }
serde_repr = "0.1"
governor = "0.7"
chrono = { version = "0.4", features = ["serde", "clock"] }
oauth2 = "=5.0.0-rc.1"
tokio = { version = "1", features = [
"rt-multi-thread",
"macros",
"sync",
"time",
] }
reqwest = { version = "0.12", features = ["blocking", "json"] }
dirs = "5.0"
url = "2.5"
http = "1.1"
axum = { version = "0.7", features = ["macros"] }
axum-server = { version = "0.7", features = ["tls-rustls-no-provider"] }
thiserror = "2.0"
open = "5"
async-channel = "2.3"
urlencoding = "2.1"
derive_builder = "0.20"
[dev-dependencies]
tower = { version = "0.5", features = ["util"] }
serde_test = "1.0"
mockito = "1.6"
pretty_assertions = "1.4"
assert-json-diff = "2.0"
float-cmp = "0.10"
regex = "1.11"
[features]
test_online = []
danger = []