ticksupply 0.1.0

Official Rust client for the Ticksupply market data API
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.75"
name = "ticksupply"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Official Rust client for the Ticksupply market data API"
homepage = "https://ticksupply.com"
documentation = "https://docs.rs/ticksupply"
readme = "README.md"
keywords = [
    "ticksupply",
    "market-data",
    "api",
    "trading",
    "crypto",
]
categories = [
    "api-bindings",
    "asynchronous",
]
license = "MIT"
repository = "https://github.com/Ticksupply/ticksupply-rust"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
chrono = ["dep:chrono"]
default = ["chrono"]
rust_decimal = ["dep:rust_decimal"]
time = ["dep:time"]

[lib]
name = "ticksupply"
path = "src/lib.rs"

[[example]]
name = "create_export"
path = "examples/create_export.rs"
required-features = ["chrono"]

[[example]]
name = "list_exchanges"
path = "examples/list_exchanges.rs"

[[example]]
name = "paginate_subscriptions"
path = "examples/paginate_subscriptions.rs"

[[example]]
name = "smoke_test"
path = "examples/smoke_test.rs"
required-features = ["chrono"]

[[example]]
name = "streaming_subscriptions"
path = "examples/streaming_subscriptions.rs"

[[test]]
name = "auth"
path = "tests/auth.rs"

[[test]]
name = "availability"
path = "tests/availability.rs"

[[test]]
name = "billing"
path = "tests/billing.rs"

[[test]]
name = "catalog"
path = "tests/catalog.rs"

[[test]]
name = "errors"
path = "tests/errors.rs"

[[test]]
name = "export_schemas"
path = "tests/export_schemas.rs"

[[test]]
name = "exports"
path = "tests/exports.rs"

[[test]]
name = "retries"
path = "tests/retries.rs"

[[test]]
name = "subscriptions"
path = "tests/subscriptions.rs"

[dependencies.async-stream]
version = "0.3"

[dependencies.bytes]
version = "1"

[dependencies.chrono]
version = "0.4"
features = [
    "serde",
    "clock",
]
optional = true
default-features = false

[dependencies.futures]
version = "0.3"

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "rustls-tls",
    "gzip",
]
default-features = false

[dependencies.rust_decimal]
version = "1"
features = ["std"]
optional = true
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "1"

[dependencies.time]
version = "0.3"
features = [
    "serde",
    "parsing",
]
optional = true

[dependencies.tokio]
version = "1"
features = ["time"]

[dependencies.url]
version = "2"

[dev-dependencies.pretty_assertions]
version = "1"

[dev-dependencies.serde_json]
version = "1"

[dev-dependencies.tokio]
version = "1"
features = [
    "time",
    "macros",
    "rt-multi-thread",
]

[dev-dependencies.uuid]
version = "1"
features = ["v4"]

[dev-dependencies.wiremock]
version = "0.6"