[package]
edition = "2021"
name = "ndaxrs"
version = "0.1.0"
authors = ["artyom-morozov"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust client library for the NDAX cryptocurrency exchange API"
homepage = "https://github.com/artyom-morozov/ndaxrs"
documentation = "https://docs.rs/ndaxrs"
readme = "README.md"
keywords = [
"ndax",
"trading",
"exchange",
"cryptocurrency",
"api",
]
categories = [
"web-programming::websocket",
"api-bindings",
]
license = "GPL-3.0-only"
repository = "https://github.com/artyom-morozov/ndaxrs"
[lib]
name = "ndaxrs"
path = "src/lib.rs"
[[example]]
name = "public_data"
path = "examples/public_data.rs"
[[example]]
name = "trading"
path = "examples/trading.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "message_parsing"
path = "tests/message_parsing.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.displaydoc]
version = "0.2"
[dependencies.dotenvy]
version = "0.15"
[dependencies.futures]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12"
[dependencies.log]
version = "0.4"
[dependencies.rust_decimal]
version = "1"
features = ["serde-with-str"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_repr]
version = "0.1"
[dependencies.sha2]
version = "0.10"
[dependencies.tokio]
version = "1"
features = [
"macros",
"net",
"rt",
"sync",
"time",
]
[dependencies.tokio-tungstenite]
version = "0.21"
features = ["native-tls"]
[dependencies.url]
version = "2"
[dev-dependencies.env_logger]
version = "0.11"
[dev-dependencies.rust_decimal_macros]
version = "1"