[package]
edition = "2021"
name = "dukascopy_rust"
version = "0.2.0"
authors = ["Fona Erhabor osaofonaerhabor@gmail.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust wrapper for Dukascopy’s free charting API"
homepage = "https://github.com/Erhabor-Fona/dukascopy_rust"
documentation = "https://docs.rs/dukascopy_rust"
readme = "README.md"
keywords = [
"dukascopy",
"finance",
"api",
"market-data",
"data-processing",
]
categories = [
"api-bindings",
"finance",
]
license = "MIT"
repository = "https://github.com/Erhabor-Fona/dukascopy_rust"
[lib]
name = "dukascopy_rust"
path = "src/lib.rs"
[[example]]
name = "dukascopy_example"
path = "examples/dukascopy_example.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[dependencies.chrono]
version = "0.4"
features = ["clock"]
[dependencies.futures]
version = "0.3"
[dependencies.rand]
version = "0.8"
[dependencies.reqwest]
version = "0.11"
features = [
"json",
"rustls-tls",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.tokio]
version = "1"
features = ["full"]