-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
50 lines (47 loc) · 1.35 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
[package]
name = "nse"
version = "0.1.2"
edition = "2021"
authors = ["TechfaneTechnologies <techfanetechnologies@gmail.com>"]
description = "NSE is a rust binary and library for extracting real-time data from National Stock Exchange (India)"
exclude = ["tests"] # Don't need tests for installing using crates.io
repository = "https://github.com/TechfaneTechnologies/nse"
categories = ["command-line-utilities"]
readme = "README.md"
license = "MPL-2.0"
keywords = [
"nse",
"trading",
"investing",
"stock-market",
"algotrading"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
env_logger = "0.9.0"
polars = "0.21.0"
csv = "1.1.6"
serde = { version = "1.0.136", features = ["derive"] }
chrono = { version = "0.4.19", features = ["serde"] }
serde_urlencoded = "0.7.1"
serde_json = { version = "1.0.79", features = ["raw_value"] }
rayon = "1.5.2"
rand = { version = "0.8.5", features = ["nightly", "serde", "serde1", "small_rng", "log", "min_const_gen"] }
# isahc = "1.7.0"
[dependencies.isahc]
version = "1.7.1"
# git = "https://github.com/sagebind/isahc.git"
# branch = "master"
features = [
"nightly",
"psl",
"cookies",
"http2",
"json",
"spnego",
"static-curl",
"text-decoding",
"unstable-interceptors",
# "rustls-tls",
# "rustls-tls-native-certs",
]