calendar_client 0.1.1

client to use trading economics 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"
name = "calendar_client"
version = "0.1.1"
authors = ["MoghTech"]
description = "client to use trading economics api"
license = "MIT"
resolver = "2"

[dependencies.futures-util]
version = "0.3"
optional = true

[dependencies.reqwest]
version = "0.11"
features = ["json"]
optional = true

[dependencies.serde]
version = "1.0"
optional = true

[dependencies.serde_json]
version = "1.0"
optional = true

[dependencies.tokio]
version = "1"
features = ["full"]
optional = true

[dependencies.tokio-tungstenite]
version = "0.17"
features = ["native-tls"]
optional = true

[features]
default = ["full"]
full = [
    "http",
    "ws",
]
http = [
    "dep:reqwest",
    "dep:serde",
    "dep:serde_json",
]
ws = [
    "dep:tokio",
    "dep:tokio-tungstenite",
    "dep:futures-util",
]